using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; // // This is here so CodeMaid doesn't reorganize this document // namespace MP.MONO.Core.DTO { public class DisplayDataDTO { public int Order { get; set; } = 0; public string Type { get; set; } = ""; public string Title { get; set; } = ""; public string Value { get; set; } = ""; public double ValueNum { get; set; } = 0; public string DisplFormat { get; set; } = "N0"; public double MinVal { get; set; } = 0; public double MaxVal { get; set; } = 0; public bool IsNumeric { get; set; } = false; public bool EnablePlot { get; set; } = true; public bool ShowBar { get; set; } = false; public bool ShowGauge { get; set; } = false; public string CssIcon { get; set; } = ""; } }