20 lines
403 B
C#
20 lines
403 B
C#
namespace adas_core.Domain.Models.MongoModels;
|
|
|
|
public class PoCMapping
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
|
|
public List<PoCMappingItem> PointOfCares { get; set; } = [];
|
|
}
|
|
|
|
public class PoCMappingItem
|
|
{
|
|
public string OriginalPoC { get; set; } = string.Empty;
|
|
|
|
|
|
public string NewPoC { get; set; } = string.Empty;
|
|
|
|
|
|
public List<List<string>> Beds { get; set; } = [];
|
|
} |