namespace IStation.Model { /// /// 自定义尺寸 /// public class SizeC : JsonModel { /// /// /// public SizeC() { } /// /// /// public SizeC(double width, double height) { this.Width = width; this.Height = height; } /// /// /// public SizeC(SizeC rhs) { this.Width = rhs.Width; this.Height = rhs.Height; } /// /// 宽度 /// public double Width { get; set; } /// /// 高度 /// public double Height { get; set; } /// /// /// public override string ToString() { return $"{Width},{Height}"; } } }