phronCare/Domain/Entities/EDocumentType.cs
Leandro Hernan Rojas 0f4176a5b2
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 12m18s
Add CustomerForm
2025-04-09 23:52:00 -03:00

14 lines
256 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; }
}
}