namespace Common.UI.ViewModels { using System.Windows.Media; using Common.UI.Infrastructure; public class PropertyVM : VM { public string Name { get; set; } private string source; public string Source { get => this.source; set => this.SetValue(x => x.source = value); } private string value; public string Value { get => this.value; set => this.SetValue(x => x.value = value); } } }