2021-04-06 18:17:23 +02:00

17 lines
433 B
C#

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<string> SectionIds { get; set; }
public string PrimaryColor { get; set; }
public string SecondaryColor { get; set; }
public DateTime DateCreation { get; set; }
}
}