using System; using System.Collections.Generic; using System.Text; namespace Manager.Interfaces.DTO { public class DisplayDTO { public string Id { get; set; } public string Label { get; set; } public List SectionIds { get; set; } public string PrimaryColor { get; set; } public string SecondaryColor { get; set; } public DateTime DateCreation { get; set; } } }