namespace Common.UI.ViewModels { public class GridItem : GridItem { public int Column { get; set; } public int ColumnSpan { get; set; } = 1; public int Row { get; set; } public int RowSpan { get; set; } = 1; private object label; public object Label { get => this.label; set => this.Set(() => this.label = value); } } }