Files
Antifraude.Net/Antifraude.Net/bdAntifraudeMYSQL/db/EXPEDIENTESPERSONAS.cs
2026-09-21 12:52:08 +02:00

24 lines
542 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAntifraudeMYSQL.db;
[AddINotifyPropertyChangedInterface]
public partial class EXPEDIENTESPERSONAS
{
public int IDEXPEDIENTESPERSONAS { get; set; }
public int? TIPO { get; set; }
public DateTime? FECHA { get; set; }
public string? DESCRIPCION { get; set; }
public int IDPERSONA { get; set; }
public virtual PERSONAS IDPERSONANavigation { get; set; } = null!;
public virtual ENUMERACIONES? TIPONavigation { get; set; }
}