| 6 | namespace winrt::FastCopy::implementation |
| 7 | { |
| 8 | struct SettingsViewModel : SettingsViewModelT<SettingsViewModel> |
| 9 | { |
| 10 | SettingsViewModel() = default; |
| 11 | |
| 12 | bool Notify(); |
| 13 | void Notify(bool value); |
| 14 | |
| 15 | int MultipleWindowBehavior(); |
| 16 | void MultipleWindowBehavior(int value); |
| 17 | |
| 18 | int ThemeSelection(); |
| 19 | void ThemeSelection(int value); |
| 20 | |
| 21 | int BackgroundSelection(); |
| 22 | void BackgroundSelection(int value); |
| 23 | private: |
| 24 | Settings m_model; |
| 25 | }; |
| 26 | } |
| 27 | |
| 28 | namespace winrt::FastCopy::factory_implementation |