namespace adas_core.Domain.Models.MongoModels;
///
/// Represents a mapping structure, likely used to define relationships or transformations within a Proof of Concept (PoC) implementation.
///
///
/// This class serves as a container or descriptor for mapping logic, commonly used to translate data between different representations or models.
///
public class PoCMapping
{
public string Id { get; set; } = string.Empty;
public List PointOfCares { get; set; } = [];
}
///
/// Represents a single item used in a proof of concept (PoC) mapping, encapsulating the data or configuration required to define a mapping entry.
///
public class PoCMappingItem
{
public string OriginalPoC { get; set; } = string.Empty;
public string NewPoC { get; set; } = string.Empty;
public List> Beds { get; set; } = [];
}