15 lines
295 B
C#
15 lines
295 B
C#
namespace adas_core.Domain.Models.MongoModels;
|
|
|
|
public class ConfigUnits
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
public List<ConfigUnitItem>? Items { get; set; }
|
|
}
|
|
|
|
public class ConfigUnitItem
|
|
{
|
|
public string? Code { get; set; }
|
|
|
|
public string? Value { get; set; }
|
|
} |