All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m48s
16 lines
379 B
C#
16 lines
379 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>();
|
|
}
|
|
}
|