24 lines
960 B
C#
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
|
|
}
|
|
}
|