using Plugin.Settings.Abstractions; namespace Aurora.Services.Settings { public interface ISettingsService { ISettings AppSettings { get; set; } /// /// The user's username. This is persisted. /// /// string Username { get; set; } /// /// The default port to use. This is persisted. /// /// int DefaultPort { get; set; } /// /// The current sessions clientId. This is assigned by the server. This is not persisted. /// /// string ClientName { get; set; } string LibraryLocation { get; set; } } }