using System.Windows; namespace OpenSEMI.ClientBase.IO { public class AOItem : IOItem { public static readonly DependencyProperty NewValueProperty = DependencyProperty.Register("NewValue", typeof(short), typeof(AOItem), new PropertyMetadata((short)0)); public static readonly DependencyProperty TextSavedProperty = DependencyProperty.Register("TextSaved", typeof(bool), typeof(AOItem), new PropertyMetadata(true)); public short NewValue { get { return (short)GetValue(NewValueProperty); } set { SetValue(NewValueProperty, value); } } public bool TextSaved { get { return (bool)GetValue(TextSavedProperty); } set { SetValue(TextSavedProperty, value); } } } }