rama creada apartir de master en j

This commit is contained in:
jrojas
2026-06-26 10:29:23 +02:00
parent 319fd3dfb0
commit c1517fda87
2810 changed files with 1927392 additions and 25392 deletions
@@ -1,5 +1,11 @@
namespace adas_core.Domain.Models.MongoModels;
/// <summary>
/// Represents a mapping structure, likely used to define relationships or transformations within a Proof of Concept (PoC) implementation.
/// </summary>
/// <remarks>
/// This class serves as a container or descriptor for mapping logic, commonly used to translate data between different representations or models.
/// </remarks>
public class PoCMapping
{
public string Id { get; set; } = string.Empty;
@@ -8,6 +14,9 @@ public class PoCMapping
public List<PoCMappingItem> PointOfCares { get; set; } = [];
}
/// <summary>
/// Represents a single item used in a proof of concept (PoC) mapping, encapsulating the data or configuration required to define a mapping entry.
/// </summary>
public class PoCMappingItem
{
public string OriginalPoC { get; set; } = string.Empty;