phronCare/Domain/Entities/EDocumentType.cs

22 lines
496 B
C#
Raw Normal View History

2025-04-03 15:49:04 -03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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>();
}
}