phronCare/Domain/Entities/EDocumentType.cs

16 lines
381 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; }
2025-04-04 18:02:15 -03:00
//public virtual ICollection<ECustomerDocument> PhSCustomerDocuments { get; set; } = new List<ECustomerDocument>();
2025-04-03 15:49:04 -03:00
}
}