mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
22 lines
No EOL
523 B
C#
22 lines
No EOL
523 B
C#
namespace Wox.Plugin.ControlPanel
|
|
{
|
|
public class ControlPanelSettingsViewModel : BaseModel
|
|
{
|
|
private readonly Settings _settings;
|
|
|
|
public ControlPanelSettingsViewModel(Settings settings)
|
|
{
|
|
_settings = settings;
|
|
}
|
|
|
|
public bool ShouldUsePinYin
|
|
{
|
|
get { return _settings.ShouldUsePinYin; }
|
|
set
|
|
{
|
|
_settings.ShouldUsePinYin = value;
|
|
this.OnPropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
} |