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
|
|
}
|
|
}
|