22 lines
587 B
C#
22 lines
587 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 bool IsNumeric { get; set; } = false;
|
|
}
|
|
}
|