phronCare/Models/Models/PhSDocumentType.cs

20 lines
502 B
C#
Raw Normal View History

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>();
public virtual ICollection<PhSPatient> PhSPatients { get; set; } = new List<PhSPatient>();
2025-04-03 15:49:04 -03:00
}