28 lines
702 B
C#
28 lines
702 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class actualizacionessiniestros_eiac
|
|
{
|
|
public int idActualizacion { get; set; }
|
|
|
|
public int idSiniestroEIAC { get; set; }
|
|
|
|
public int? idFicheroCompania { get; set; }
|
|
|
|
public DateTime Fecha { get; set; }
|
|
|
|
public DateTime? FechaVisto { get; set; }
|
|
|
|
public int? idUsuarioVisto { get; set; }
|
|
|
|
public virtual ficheroscompanias? idFicheroCompaniaNavigation { get; set; }
|
|
|
|
public virtual siniestros_eiac idSiniestroEIACNavigation { get; set; } = null!;
|
|
|
|
public virtual usuarios? idUsuarioVistoNavigation { get; set; }
|
|
}
|