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

22 lines
524 B
C#

using System;
using System.Collections.Generic;
namespace bdAntifraude.db;
public partial class ASISTENCIASSESIONES
{
public int IDASISTENCIASESION { get; set; }
public int IDSESION { get; set; }
public int IDPERSONA { get; set; }
public int? IDLIQUIDACION { get; set; }
public virtual NOMINATRABAJADORCABECERA? IDLIQUIDACIONNavigation { get; set; }
public virtual PERSONAS IDPERSONANavigation { get; set; } = null!;
public virtual SESIONES IDSESIONNavigation { get; set; } = null!;
}