manager-service/ManagerService/DTOs/ConfigurationDTO.cs
2025-07-16 15:28:54 +02:00

24 lines
960 B
C#

using System;
using System.Collections.Generic;
namespace ManagerService.DTOs
{
public class ConfigurationDTO
{
public string id { get; set; }
public string instanceId { get; set; }
public string label { get; set; }
public List<TranslationDTO> title { get; set; }
public string imageId { get; set; } // == ResourceId
public string imageSource { get; set; } // == Image url
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; }
public bool isOffline { get; set; }
public List<string> sectionIds { get; set; }
public string loaderImageId { get; set; } // == ResourceId
public string loaderImageUrl { get; set; } // == Image url
}
}