29 lines
611 B
C#
29 lines
611 B
C#
namespace Common.UI.ViewModels
|
|
{
|
|
using Common.UI.Infrastructure;
|
|
|
|
internal class KvpViewModel : ViewModel<KvpViewModel>
|
|
{
|
|
private string key;
|
|
public string Key
|
|
{
|
|
get => this.key;
|
|
set => this.Set(vm => vm.key = value);
|
|
}
|
|
|
|
private object value;
|
|
public object Value
|
|
{
|
|
get => this.value;
|
|
set => this.Set(vm => vm.value = value);
|
|
}
|
|
|
|
private int row;
|
|
public int Row
|
|
{
|
|
get => this.row;
|
|
set => this.Set(vm => vm.row = value);
|
|
}
|
|
}
|
|
}
|