All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m24s
20 lines
502 B
C#
20 lines
502 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models.Models;
|
|
|
|
public partial class PhSDocumentType
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Code { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public virtual ICollection<PhSCustomerDocument> PhSCustomerDocuments { get; set; } = new List<PhSCustomerDocument>();
|
|
|
|
public virtual ICollection<PhSPatient> PhSPatients { get; set; } = new List<PhSPatient>();
|
|
}
|