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 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 List languages { get; set; } } }