17 lines
373 B
C#
17 lines
373 B
C#
namespace adas_core.Domain.Models.MongoModels;
|
|
|
|
public class ServiceConfigService
|
|
{
|
|
public string Screen { get; set; } = string.Empty;
|
|
|
|
|
|
public List<ServiceConfigServiceSection> Sections { get; set; } = [];
|
|
}
|
|
|
|
public class ServiceConfigServiceSection
|
|
{
|
|
public string BoxId { get; set; } = string.Empty;
|
|
|
|
|
|
public string Box { get; set; } = string.Empty;
|
|
} |