2020-02-01 01:41:45 +00:00
|
|
|
using Plugin.Settings.Abstractions;
|
|
|
|
|
|
|
|
namespace Aurora.Services.Settings
|
|
|
|
{
|
|
|
|
public interface ISettingsService
|
|
|
|
{
|
|
|
|
ISettings AppSettings { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The user's username. This is persisted.
|
|
|
|
/// </summary>
|
|
|
|
/// <value></value>
|
|
|
|
string Username { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The default port to use. This is persisted.
|
|
|
|
/// </summary>
|
|
|
|
/// <value></value>
|
|
|
|
int DefaultPort { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The current sessions clientId. This is assigned by the server. This is not persisted.
|
|
|
|
/// </summary>
|
|
|
|
/// <value></value>
|
2020-02-02 21:49:01 +00:00
|
|
|
string ClientName { get; set; }
|
2020-02-02 15:26:47 +00:00
|
|
|
|
|
|
|
string LibraryLocation { get; set; }
|
2020-02-01 01:41:45 +00:00
|
|
|
}
|
|
|
|
}
|