28 lines
670 B
C#
28 lines
670 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class documentospolizasagrario
|
|
{
|
|
public int idDocumento { get; set; }
|
|
|
|
public string? Descripcion { get; set; }
|
|
|
|
public int idPoliza { get; set; }
|
|
|
|
public int? idFichero { get; set; }
|
|
|
|
public DateTime? Fecha { get; set; }
|
|
|
|
public int? idUsuarioAdjuntaFichero { get; set; }
|
|
|
|
public virtual ficheros? idFicheroNavigation { get; set; }
|
|
|
|
public virtual polizasagrario idPolizaNavigation { get; set; } = null!;
|
|
|
|
public virtual usuarios? idUsuarioAdjuntaFicheroNavigation { get; set; }
|
|
}
|