laatzen/Common/Ui/Common.UI/ViewModels/GridItem.cs
2024-12-03 17:03:33 +01:00

21 lines
437 B
C#

namespace Common.UI.ViewModels
{
public class GridItem : 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);
}
}
}