manager-service/ManagerService/DTOs/ApplicationInstanceDTO.cs

42 lines
1006 B
C#

using Manager.DTOs;
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 string primaryColor { get; set; }
public string secondaryColor { get; set; }
public LayoutMainPageType layoutMainPage { get; set; }
public List<string> languages { get; set; }
public string sectionEventId { get; set; }
public SectionEventDTO? sectionEventDTO { get; set; }
public bool isAssistant { get; set; }
public bool isStatistic { get; set; }
}
}