namespace SHJX.Service.Model.ControlModules { public class EllipseControl : BindableBase { public int Index { get; set; } public string Name { get; set; } public string Stroke { get; set; } public double StrokeThickness { get; set; } private string _fill; public string Fill { get => _fill; set => SetProperty(ref _fill, value); } public EllipseControl() { Stroke = "#99CCFF"; StrokeThickness = 2; Fill = "#4F71FF"; } } }