2025-04-04 20:06:04 -03:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Models.Models;
|
2025-04-03 15:49:04 -03:00
|
|
|
|
|
|
|
|
|
|
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>();
|
2025-04-20 19:58:17 -03:00
|
|
|
|
|
|
|
|
|
|
public virtual ICollection<PhSPatient> PhSPatients { get; set; } = new List<PhSPatient>();
|
2025-04-03 15:49:04 -03:00
|
|
|
|
}
|