Files
mapo-mono/MP.MONO.Core/DTO/DisplayDataDTO.cs
T
2022-03-08 15:27:11 +01:00

29 lines
946 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
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; } = "";
}
}