27 lines
578 B
C#
27 lines
578 B
C#
namespace TestUI.ViewModels
|
|
{
|
|
public class ItemVM : BaseVM
|
|
{
|
|
private int row;
|
|
public int Row
|
|
{
|
|
get => this.row;
|
|
set => this.Set(ref this.row, value, nameof(Row));
|
|
}
|
|
|
|
private int col;
|
|
public int Col
|
|
{
|
|
get => this.col;
|
|
set => this.Set(ref this.col, value, nameof(Col));
|
|
}
|
|
|
|
private object value;
|
|
public object Value
|
|
{
|
|
get => this.value;
|
|
set => this.Set(ref this.value, value, nameof(Value));
|
|
}
|
|
}
|
|
}
|