using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 自定义尺寸 /// public class CustomSize:JsonModel { /// /// /// public CustomSize() { } /// /// /// public CustomSize(double width, double height) { this.Width = width; this.Height = height; } /// /// /// public CustomSize(CustomSize rhs) { this.Width = rhs.Width; this.Height = rhs.Height; } /// /// 宽度 /// public double Width { get; set; } /// /// 高度 /// public double Height { get; set; } } }