using ManagerService.Data; namespace ManagerService.DTOs { public class AppConfigurationLinkDTO { public string id { get; set; } public string configurationId { get; set; } public ConfigurationDTO configuration { get; set; } public string applicationInstanceId { get; set; } public int? order { get; set; } public bool isActive { get; set; } = true; public int? weightMasonryGrid { get; set; } // Specific Mobile public bool isDate { get; set; } // Specific Kiosk public bool isHour { get; set; } // Specific Kiosk public int? roundedValue { get; set; } // Specific Kiosk public int? screenPercentageSectionsMainPage { get; set; } // Specific Kiosk public bool isSectionImageBackground { get; set; } // Specific Kiosk public string deviceId { get; set; } // Specific Kiosk public DeviceDTO device { get; set; } // Specific Kiosk public LayoutMainPageType layoutMainPage { get; set; } // Specific Kiosk public string loaderImageId { get; set; } // Specific Kiosk public string loaderImageUrl { get; set; } // Specific Kiosk public string primaryColor { get; set; } // Specific Kiosk public string secondaryColor { get; set; } // Specific Kiosk } }