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(); } }