Primera versión estable compatible con linux de WSAsegasa

This commit is contained in:
2025-11-20 16:34:14 +01:00
parent 68ab86be9e
commit 574a139e78
209 changed files with 19093 additions and 16 deletions

65
bdAsegasa/db/correos.cs Normal file
View File

@@ -0,0 +1,65 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAsegasa.db;
[AddINotifyPropertyChangedInterface]
public partial class correos
{
public int idcorreo { get; set; }
public int? idcuenta { get; set; }
public string? Remitente { get; set; }
public string? Destinatario { get; set; }
public string? Copia { get; set; }
public string? CopiaOculta { get; set; }
public string? DireccionRespuesta { get; set; }
public string? Asunto { get; set; }
public string? Cuerpo { get; set; }
public string? RutaFicheroAdjunto { get; set; }
public int? idFicheroAdjunto { get; set; }
public DateTime? FechaCreacion { get; set; }
public DateTime? FechaEnvio { get; set; }
public DateTime? FechaUltimoIntento { get; set; }
public DateTime? FechaAnulacion { get; set; }
public DateTime? FechaAvisoError { get; set; }
public int? idAplicacion { get; set; }
public string? CodigoAplicacion { get; set; }
public bool Reciclable { get; set; }
public string? DescripcionError { get; set; }
public virtual ICollection<documentospolizassg> documentospolizassg { get; set; } = new List<documentospolizassg>();
public virtual ICollection<ficherosadjuntos> ficherosadjuntos { get; set; } = new List<ficherosadjuntos>();
public virtual ICollection<gestionesrecibos> gestionesrecibos { get; set; } = new List<gestionesrecibos>();
public virtual ICollection<gestionesvarias> gestionesvarias { get; set; } = new List<gestionesvarias>();
public virtual ficheros? idFicheroAdjuntoNavigation { get; set; }
public virtual cuentascorreo? idcuentaNavigation { get; set; }
public virtual ICollection<liquidacionesagentes> liquidacionesagentes { get; set; } = new List<liquidacionesagentes>();
public virtual ICollection<pagosliquidacionescias> pagosliquidacionescias { get; set; } = new List<pagosliquidacionescias>();
}