using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace OpenSEMI.ClientBase.Handlers { public class State : DependencyObject { public static DependencyProperty DisplayValueProperty = DependencyProperty.Register("DisplayValue", typeof(string), typeof(State)); public string Key { get; set; } public string Name { get; set; } public string DisplayValue { get { return (string)GetValue(DisplayValueProperty); } set { SetValue(DisplayValueProperty, value); } } } }