phronCare/Models/Models/PhSCustomerDocument.cs

24 lines
531 B
C#
Raw Normal View History

2025-04-03 15:49:04 -03:00
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!;
}