phronCare/Domain/Entities/ECustomerDocument.cs
Leandro Hernan Rojas 0f4176a5b2
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 12m18s
Add CustomerForm
2025-04-09 23:52:00 -03:00

24 lines
491 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Domain.Entities
{
public class ECustomerDocument
{
public int Id { get; set; }
public int CustomersId { get; set; }
public int DocumenttypesId { get; set; }
public string DocumentNumber { get; set; } = null!;
public DateOnly? IssueDate { get; set; }
public DateOnly? ExpiryDate { get; set; }
}
}