namespace adas_core.Domain.Models.MongoModels; /// /// Provides functionality for managing service configuration settings. /// public class ServiceConfigService { public string Screen { get; set; } = string.Empty; public List Sections { get; set; } = []; } /// /// Represents a configuration section that defines settings for a service configuration service. /// public class ServiceConfigServiceSection { public string BoxId { get; set; } = string.Empty; public string Box { get; set; } = string.Empty; }