using System; namespace Avalonia.Markup.Xaml.UnitTests { internal class SampleAvaloniaObject : AvaloniaObject { public static readonly StyledProperty StringProperty = AvaloniaProperty.Register("StrProp", string.Empty); public static readonly StyledProperty IntProperty = AvaloniaProperty.Register("IntProp"); public int Int { get { return GetValue(IntProperty); } set { SetValue(IntProperty, value); } } public string String { get { return GetValue(StringProperty); } set { SetValue(StringProperty, value); } } } }