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; } /// /// tablas usuarios /// 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; } }