Primera versión estable compatible con linux de WSAsegasa
This commit is contained in:
44
bdAsegasa/db/gestionesrecibos.cs
Normal file
44
bdAsegasa/db/gestionesrecibos.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdAsegasa.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class gestionesrecibos
|
||||
{
|
||||
public int idGestionRecibo { get; set; }
|
||||
|
||||
public DateTime? Fecha { get; set; }
|
||||
|
||||
public string? GestionesRealizadas { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// tablas usuarios
|
||||
/// </summary>
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public int? idRecibo { get; set; }
|
||||
|
||||
public int? Tipo { get; set; }
|
||||
|
||||
public int? FormaComunicacion { get; set; }
|
||||
|
||||
public int? idFichero { get; set; }
|
||||
|
||||
public int? idMensaje { get; set; }
|
||||
|
||||
public int? idCorreo { get; set; }
|
||||
|
||||
public virtual correos? idCorreoNavigation { get; set; }
|
||||
|
||||
public virtual ficheros? idFicheroNavigation { get; set; }
|
||||
|
||||
public virtual mensajes? idMensajeNavigation { get; set; }
|
||||
|
||||
public virtual recibos? idReciboNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user