mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2025-05-22 19:34:05 +02:00
Added DisplaySetting class for Settings screen
This commit is contained in:
parent
79f8101de3
commit
c47f37c37b
BackupEssentials
@ -124,6 +124,7 @@
|
||||
</Compile>
|
||||
<Compile Include="Sys\Settings.cs" />
|
||||
<Compile Include="Sys\SettingsData.cs" />
|
||||
<Compile Include="Sys\UI\DisplaySetting.cs" />
|
||||
<Compile Include="TestingWindow.xaml.cs">
|
||||
<DependentUpon>TestingWindow.xaml</DependentUpon>
|
||||
</Compile>
|
||||
|
11
BackupEssentials/Sys/UI/DisplaySetting.cs
Normal file
11
BackupEssentials/Sys/UI/DisplaySetting.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace BackupEssentials.Sys.UI{
|
||||
public class DisplaySetting<T>{
|
||||
public T Value { get; private set; }
|
||||
public string Display { get; private set; }
|
||||
|
||||
public DisplaySetting(T value, string display){
|
||||
this.Value = value;
|
||||
this.Display = display;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user