20 lines
425 B
C#
20 lines
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdHerramientaCACOA.db;
|
|
|
|
public partial class estadisticasfactores
|
|
{
|
|
public int idestadisticasFactores { get; set; }
|
|
|
|
public int? idsimulacion { get; set; }
|
|
|
|
public string? nombre { get; set; }
|
|
|
|
public double? coeficiente { get; set; }
|
|
|
|
public string? tipo { get; set; }
|
|
|
|
public virtual simulaciones? idsimulacionNavigation { get; set; }
|
|
}
|