64 lines
2.5 KiB
C#
64 lines
2.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class ficheros
|
|
{
|
|
public int idFichero { get; set; }
|
|
|
|
public string? Descripcion { get; set; }
|
|
|
|
public DateTime? Fecha { get; set; }
|
|
|
|
public int? idTipo { get; set; }
|
|
|
|
public string? Observaciones { get; set; }
|
|
|
|
public byte[]? Fichero { get; set; }
|
|
|
|
public string? NombreFichero { get; set; }
|
|
|
|
public int? idAplicacion { get; set; }
|
|
|
|
public virtual ICollection<correos> correos { get; set; } = new List<correos>();
|
|
|
|
public virtual ICollection<documentospolizasagrario> documentospolizasagrario { get; set; } = new List<documentospolizasagrario>();
|
|
|
|
public virtual ICollection<documentospolizassg> documentospolizassg { get; set; } = new List<documentospolizassg>();
|
|
|
|
public virtual ICollection<documentosvarios> documentosvarios { get; set; } = new List<documentosvarios>();
|
|
|
|
public virtual ICollection<expedientesagentes> expedientesagentes { get; set; } = new List<expedientesagentes>();
|
|
|
|
public virtual ICollection<ficherosadjuntos> ficherosadjuntos { get; set; } = new List<ficherosadjuntos>();
|
|
|
|
public virtual ICollection<gestionesrecibos> gestionesrecibos { get; set; } = new List<gestionesrecibos>();
|
|
|
|
public virtual ICollection<gestionessiniestros> gestionessiniestros { get; set; } = new List<gestionessiniestros>();
|
|
|
|
public virtual ICollection<gestionesvarias> gestionesvarias { get; set; } = new List<gestionesvarias>();
|
|
|
|
public virtual enumeraciones? idTipoNavigation { get; set; }
|
|
|
|
public virtual ICollection<informescontables> informescontables { get; set; } = new List<informescontables>();
|
|
|
|
public virtual ICollection<liquidacionesagentes> liquidacionesagentes { get; set; } = new List<liquidacionesagentes>();
|
|
|
|
public virtual ICollection<notificaciones> notificaciones { get; set; } = new List<notificaciones>();
|
|
|
|
public virtual ICollection<pagosliquidacionescias> pagosliquidacionescias { get; set; } = new List<pagosliquidacionescias>();
|
|
|
|
public virtual ICollection<plantillas> plantillas { get; set; } = new List<plantillas>();
|
|
|
|
public virtual ICollection<polizassg> polizassg { get; set; } = new List<polizassg>();
|
|
|
|
public virtual ICollection<procesos> procesos { get; set; } = new List<procesos>();
|
|
|
|
public virtual ICollection<remesas> remesas { get; set; } = new List<remesas>();
|
|
|
|
public virtual ICollection<tiposgestionsiniestros> tiposgestionsiniestros { get; set; } = new List<tiposgestionsiniestros>();
|
|
}
|