using System; namespace Perspex.Xaml.Base.UnitTest { internal class SamplePerspexObject : PerspexObject { public static readonly PerspexProperty StringProperty = PerspexProperty.Register("StrProp", string.Empty); public static readonly PerspexProperty IntProperty = PerspexProperty.Register("IntProp"); public int Int { get { return GetValue(IntProperty); } set { this.SetValue(IntProperty, value); } } public string String { get { return GetValue(StringProperty); } set { this.SetValue(StringProperty, value); } } } }