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

41 lines
975 B
C#

using ManagerService.Data;
using System.Collections.Generic;
namespace ManagerService.DTOs
{
public class ApplicationInstanceDTO
{
public string id { get; set; }
public string instanceId { get; set; }
public AppType appType { get; set; }
public List<AppConfigurationLink> configurations { get; set; }
public string mainImageId { get; set; }
public string mainImageUrl { get; set; }
public string loaderImageId { get; set; }
public string loaderImageUrl { get; set; }
public bool isDate { get; set; }
public bool isHour { get; set; }
public string primaryColor { get; set; }
public string secondaryColor { get; set; }
public int? roundedValue { get; set; }
public int? screenPercentageSectionsMainPage { get; set; }
public bool isSectionImageBackground { get; set; }
public List<string> languages { get; set; }
}
}