using MongoDB.Bson;
namespace adas_core.Domain.Models.MongoModels;
///
/// Represents the configuration settings for a service.
///
public class ServiceConfig
{
public ObjectId Id { get; set; }
public string StrId { get; set; } = string.Empty;
public List Service { get; set; } = [];
public ServiceConfigTheme? Theme { get; set; }
public string[]? BoxObservations { get; set; }
public string Score { get; set; } = string.Empty;
}