mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2024-11-10 13:42:50 +01:00
14 lines
401 B
C#
14 lines
401 B
C#
namespace BackupEssentials.Sys.UI{
|
|
public class DisplaySetting<T>{
|
|
public T Value { get; private set; }
|
|
|
|
private readonly string _displayKey;
|
|
public string Display { get { return Settings.Default.Language[_displayKey]; } }
|
|
|
|
public DisplaySetting(T value, string display){
|
|
this.Value = value;
|
|
this._displayKey = display;
|
|
}
|
|
}
|
|
}
|