26 lines
544 B
C#
26 lines
544 B
C#
using MongoDB.Bson;
|
|
|
|
namespace adas_core.Domain.Models.MongoModels;
|
|
|
|
/// <summary>
|
|
/// Represents the configuration settings for a service.
|
|
/// </summary>
|
|
/// <!-- aidoc:v1 sig=7ad95bf -->
|
|
public class ServiceConfig
|
|
{
|
|
public ObjectId Id { get; set; }
|
|
|
|
public string StrId { get; set; } = string.Empty;
|
|
|
|
|
|
public List<ServiceConfigService> Service { get; set; } = [];
|
|
|
|
|
|
public ServiceConfigTheme? Theme { get; set; }
|
|
|
|
|
|
public string[]? BoxObservations { get; set; }
|
|
|
|
|
|
public string Score { get; set; } = string.Empty;
|
|
} |