using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace tApi.Actions.DTO { public class FieldDTO { public string name { get; set; } public string label { get; set; } public bool display { get; set; } } }