22 lines
501 B
C#
22 lines
501 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class estadossiniestros_eiac
|
|
{
|
|
public int idEstado { get; set; }
|
|
|
|
public int idSiniestroEIAC { get; set; }
|
|
|
|
public int NumeroOrden { get; set; }
|
|
|
|
public int? SituacionSiniestro { get; set; }
|
|
|
|
public string? DescripcionSituacion { get; set; }
|
|
|
|
public virtual siniestros_eiac idSiniestroEIACNavigation { get; set; } = null!;
|
|
}
|