22 lines
424 B
C#
22 lines
424 B
C#
using MongoDB.Bson;
|
|
|
|
namespace adas_core.Domain.Models.MongoModels;
|
|
|
|
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;
|
|
} |