manager-service/Manager.Interfaces/DTO/ConfigurationDTO.cs

17 lines
523 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Manager.Interfaces.DTO
{
public class ConfigurationDTO
{
public string Id { get; set; }
public string Label { get; set; }
public string PrimaryColor { get; set; }
public string SecondaryColor { get; set; }
public List<string> Languages { get; set; } // fr, en, de, nl => Sélection dans une liste déjà établie dans l'application !
public DateTime DateCreation { get; set; }
}
}