Files
adas-core/adas-core.Domain/Models/MongoModels/ServiceConfigService.cs
T

25 lines
669 B
C#

namespace adas_core.Domain.Models.MongoModels;
/// <summary>
/// Provides functionality for managing service configuration settings.
/// </summary>
/// <!-- aidoc:v1 sig=bddc26d -->
public class ServiceConfigService
{
public string Screen { get; set; } = string.Empty;
public List<ServiceConfigServiceSection> Sections { get; set; } = [];
}
/// <summary>
/// Represents a configuration section that defines settings for a service configuration service.
/// </summary>
/// <!-- aidoc:v1 sig=ad46068 -->
public class ServiceConfigServiceSection
{
public string BoxId { get; set; } = string.Empty;
public string Box { get; set; } = string.Empty;
}