laatzen/Common/Ui/Common.UI/ViewModels/PropertyVM.cs
2025-06-11 09:29:41 +02:00

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