phronCare/Domain/Entities/EDocumentType.cs

14 lines
256 B
C#
Raw Normal View History

2025-04-04 00:45:23 -03:00
namespace Domain.Entities
2025-04-03 15:49:04 -03:00
{
public class EDocumentType
{
public int Id { get; set; }
public string? Code { get; set; }
public string Name { get; set; } = null!;
public string? Description { get; set; }
}
}