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