22 lines
496 B
C#
22 lines
496 B
C#
|
|
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>();
|
|||
|
|
}
|
|||
|
|
}
|