Files
Antifraude.Net/Antifraude.Net/bdAntifraude/db/ENFERMEDADES.cs
2025-10-24 08:46:31 +02:00

30 lines
644 B
C#

using System;
using System.Collections.Generic;
namespace bdAntifraude.db;
public partial class ENFERMEDADES
{
public int IDENFERMEDADES { get; set; }
public int? IDPERSONA { get; set; }
public DateTime? FECHAINICIO { get; set; }
public DateTime? FECHAFIN { get; set; }
public decimal? BASE { get; set; }
public int? IDTIPO { get; set; }
public bool CONTINUIDAD { get; set; }
public bool NOMINANORMAL { get; set; }
public bool NOMINASEGURIDADSOCIAL { get; set; }
public virtual PERSONAS? IDPERSONANavigation { get; set; }
public virtual ENUMERACIONES? IDTIPONavigation { get; set; }
}