44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System;
|
|
using System.Threading;
|
|
using Plugin.Settings;
|
|
using Plugin.Settings.Abstractions;
|
|
|
|
namespace Aurora.Services
|
|
{
|
|
public class SettingsService : BaseService<SettingsService>
|
|
{
|
|
private Lazy<ISettings> _appSettings;
|
|
|
|
public SettingsService()
|
|
{
|
|
}
|
|
|
|
public ISettings AppSettings
|
|
{
|
|
get
|
|
{
|
|
if (_appSettings == null)
|
|
{
|
|
_appSettings = new Lazy<ISettings>(() => CrossSettings.Current, LazyThreadSafetyMode.PublicationOnly);
|
|
}
|
|
|
|
return _appSettings.Value;
|
|
}
|
|
set
|
|
{
|
|
_appSettings = new Lazy<ISettings>(() => value, LazyThreadSafetyMode.PublicationOnly);
|
|
}
|
|
}
|
|
|
|
private string _usernameKey = "username";
|
|
|
|
public string Username
|
|
{
|
|
get { return AppSettings.GetValueOrDefault(_usernameKey, ""); }
|
|
set
|
|
{
|
|
AppSettings.AddOrUpdateValue(_usernameKey, value);
|
|
}
|
|
}
|
|
}
|
|
} |