aurora/aurora-sharp-desktop/Aurora/Services/Settings/ISettingsService.cs

29 lines
759 B
C#
Raw Normal View History

using Plugin.Settings.Abstractions;
2021-03-06 04:10:12 +00:00
namespace Aurora.Services.Settings
{
2021-03-06 04:10:12 +00:00
public interface ISettingsService
{
2021-03-06 04:10:12 +00:00
ISettings AppSettings { get; set; }
/// <summary>
/// The user's username. This is persisted.
/// </summary>
/// <value></value>
2021-03-06 04:10:12 +00:00
string Username { get; set; }
/// <summary>
/// The default port to use. This is persisted.
/// </summary>
/// <value></value>
2021-03-06 04:10:12 +00:00
int DefaultPort { get; set; }
/// <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; }
2021-03-06 04:10:12 +00:00
string LibraryLocation { get; set; }
}
}