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 => GetValue(IntProperty); set => SetValue(IntProperty, value); } public string String { get => GetValue(StringProperty); set => SetValue(StringProperty, value); } } }