using System; using System.Collections.Generic; namespace Models.Models; public partial class PhSCustomerDocument { 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; } public virtual PhSCustomer Customers { get; set; } = null!; public virtual PhSDocumentType Documenttypes { get; set; } = null!; }