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