using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Domain.Entities { public class EQuoteRole { /// /// ID interno /// public int Id { get; set; } /// /// FK a encabezado de presupuesto (PhS_QuoteHeaders) /// public int QuoteheaderId { get; set; } /// /// Tipo de entidad asociada (Ej: PhS_Professionals, PhS_Institutions, PhS_Patients) /// public string Entitytype { get; set; } = String.Empty; /// /// ID de la entidad asociada /// public int EntityId { get; set; } /// /// Rol que cumple la entidad en el presupuesto (Ej: Medico, Hospital, Paciente) /// public string Role { get; set; } = null!; } }