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

24 lines
524 B
C#

using System;
using System.Collections.Generic;
namespace bdAntifraude.db;
public partial class DIASACOMPENSARPERSONAS
{
public int IDDIAACOMPENSARPERSONA { get; set; }
public int? IDPERSONA { get; set; }
public DateTime? FECHA { get; set; }
public DateTime? FECHACOMPENSACION { get; set; }
public string? DESCRIPCION { get; set; }
public DateTime? FECHALIMITEVALIDEZ { get; set; }
public int? NUMERODIAS { get; set; }
public virtual PERSONAS? IDPERSONANavigation { get; set; }
}