24 lines
542 B
C#
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; }
|
|
}
|