Files
ADP/UIShare/UIViewModel/CustomPanelItem.cs
2026-06-05 10:57:09 +08:00

22 lines
428 B
C#

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