mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
27 lines
572 B
C#
27 lines
572 B
C#
namespace OwnCord.Client.ViewModels;
|
|||
|
|
|
||
|
|
public sealed class SettingsViewModel : ViewModelBase
|
||
|
|
{
|
||
|
|
private bool _isDarkTheme;
|
||
|
|
private bool _mentionsOnly;
|
||
|
|
private string _pushToTalkKey = "F4";
|
||
|
|
|
||
|
|
public bool IsDarkTheme
|
||
|
|
{
|
||
|
|
get => _isDarkTheme;
|
||
|
|
set => SetField(ref _isDarkTheme, value);
|
||
|
|
}
|
||
|
|
|
||
|
|
public bool MentionsOnly
|
||
|
|
{
|
||
|
|
get => _mentionsOnly;
|
||
|
|
set => SetField(ref _mentionsOnly, value);
|
||
|
|
}
|
||
|
|
|
||
|
|
public string PushToTalkKey
|
||
|
|
{
|
||
|
|
get => _pushToTalkKey;
|
||
|
|
set => SetField(ref _pushToTalkKey, value);
|
||
|
|
}
|
||
|
|
}
|