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 bool IsNumeric { get; set; } = false; } }