24 lines
540 B
C#
24 lines
540 B
C#
namespace Common.UI.ViewModels
|
|
{
|
|
using System.Windows.Media;
|
|
using Common.UI.Infrastructure;
|
|
|
|
public class PropertyVM : VM<PropertyVM>
|
|
{
|
|
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);
|
|
}
|
|
}
|
|
} |