Files
ADP/UIShare/UIViewModel/CustomPanelItemVM.cs
2026-06-10 16:05:35 +08:00

22 lines
436 B
C#

using Prism.Mvvm;
namespace UIShare.UIViewModel
{
public class CustomPanelItemVM : BindableBase
{
private string _name;
public string Name
{
get => _name;
set => SetProperty(ref _name, value);
}
private string _pointY;
public string PointY
{
get => _pointY;
set => SetProperty(ref _pointY, value);
}
}
}