using MongoDB.Bson;
namespace adas_core.Domain.Models.DTO;
///
/// Represents a data transfer object that encapsulates point of contact and unit information for transfer between application layers or systems.
///
public class PocAndUnitDto
{
public List PocList { get; set; } = [];
}
///
/// Represents a minimal data transfer object encapsulating point of consumption and unit information.
///
public class MinimalPocAndUnitDto
{
public string? PocName { get; set; }
public ObjectId PocId { get; set; }
public string? UnitName { get; set; }
public ObjectId UnitId { get; set; }
}