31 lines
714 B
C#
31 lines
714 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 string primaryColor { get; set; }
|
|
|
|
public string secondaryColor { get; set; }
|
|
|
|
public List<string> languages { get; set; }
|
|
}
|
|
}
|