45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class gestionessiniestros
|
|
{
|
|
public int idGestionSiniestro { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla enumeraciones
|
|
/// </summary>
|
|
public int? idTipo { get; set; }
|
|
|
|
public DateTime? FechaIntroduccion { get; set; }
|
|
|
|
public string? GestionesRealizadas { get; set; }
|
|
|
|
public DateOnly? FechaRecordatorio { get; set; }
|
|
|
|
public DateOnly? FechaRealizacionAccion { get; set; }
|
|
|
|
public int? idFichero { get; set; }
|
|
|
|
public int idSiniestro { get; set; }
|
|
|
|
public int? idUsuarioCreador { get; set; }
|
|
|
|
public int? idUsuarioModificador { get; set; }
|
|
|
|
public DateTime? FechaModificacion { get; set; }
|
|
|
|
public virtual ficheros? idFicheroNavigation { get; set; }
|
|
|
|
public virtual siniestros idSiniestroNavigation { get; set; } = null!;
|
|
|
|
public virtual tiposgestionsiniestros? idTipoNavigation { get; set; }
|
|
|
|
public virtual usuarios? idUsuarioCreadorNavigation { get; set; }
|
|
|
|
public virtual usuarios? idUsuarioModificadorNavigation { get; set; }
|
|
}
|