41 lines
975 B
C#
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; }
|
|
}
|
|
}
|