using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Domain.Entities { public class EDocumentType { public int Id { get; set; } public string? Code { get; set; } public string Name { get; set; } = null!; public string? Description { get; set; } public virtual ICollection PhSCustomerDocuments { get; set; } = new List(); } }