22 lines
461 B
C#
22 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdHerramientaCACOA.db;
|
|
|
|
public partial class estadisticasusos
|
|
{
|
|
public int idestadisticaUsos { get; set; }
|
|
|
|
public int? idSimulacion { get; set; }
|
|
|
|
public double? superficie { get; set; }
|
|
|
|
public int? idUso { get; set; }
|
|
|
|
public int? idTipologia { get; set; }
|
|
|
|
public int? idIntervencion { get; set; }
|
|
|
|
public virtual simulaciones? idSimulacionNavigation { get; set; }
|
|
}
|