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