1
0
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:
chylex 2015-04-19 13:31:35 +02:00
parent 79f8101de3
commit c47f37c37b
2 changed files with 12 additions and 0 deletions

View File

@ -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>

View 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;
}
}
}