phronCare/Domain/Entities/EDocumentType.cs
Leandro Hernan Rojas 18854faa98
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 1m40s
Add Patch Loop Recursivo
2025-04-04 18:02:15 -03:00

16 lines
381 B
C#

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<ECustomerDocument> PhSCustomerDocuments { get; set; } = new List<ECustomerDocument>();
}
}