21 lines
437 B
C#
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);
|
|
}
|
|
}
|
|
}
|