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