namespace HStation.WinFrmUI { /// /// /// public class SimulationPrintLossCurveEndItemViewModel { /// /// /// public SimulationPrintLossCurveEndItemViewModel(string code, string name, double x, double y) { this.Code = code; this.Name = name; this.X = Math.Round(x, 2); this.Y = Math.Round(y, 2); } /// /// 编码 /// public string Code { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// X /// public double X { get; set; } /// /// Y /// public double Y { get; set; } } }