using System; using System.Collections.Generic; namespace bdHerramientaCACOA.db; public partial class simulaciones { public int idSimulacion { get; set; } public int idCodigo { get; set; } public string Descripcion { get; set; } = null!; public int idTipoSimulacion { get; set; } public int idFicheroJSON { get; set; } public DateTime FechaCreacion { get; set; } public DateTime? FechaModificacion { get; set; } public bool Ocultar { get; set; } public double? CostesDirectos { get; set; } public double? CostesIndirectos { get; set; } public double? CostesVariables { get; set; } public virtual ICollection estadisticas { get; set; } = new List(); public virtual usuarios idCodigoNavigation { get; set; } = null!; public virtual ficheros idFicheroJSONNavigation { get; set; } = null!; public virtual enumeraciones idTipoSimulacionNavigation { get; set; } = null!; }