17 lines
523 B
C#
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; }
|
|
}
|
|
}
|