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

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);
}
}
}