namespace SHJX.Service.Model.ControlModules { public class CenterControlInfo : BindableBase { public int Index { get; set; } public string ControlName { get; set; } public string TagNameText { get; set; } public string _centerText; public string CenterText { get => _centerText; set => SetProperty(ref _centerText, value); } public string _backColor; public string BackColor { get => _backColor; set => SetProperty(ref _backColor, value); } public CenterControlInfo() { CenterText = string.Empty; } } }