namespace Common.UI.ViewModels { using Common.UI.Infrastructure; internal class KvpViewModel : ViewModel { 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); } } }