22 lines
428 B
C#
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);
|
|
}
|
|
}
|
|
} |