mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2025-12-03 11:38:24 +01:00
Added DisplaySetting class for Settings screen
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user