BalanceHidrico.cs 409B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using WebApplication3.Clases;
  4. #nullable disable
  5. namespace WebApplication3.Models
  6. {
  7. public partial class BalanceHidrico
  8. {
  9. public uint Id { get; set; }
  10. public uint? IdSimulacion { get; set; }
  11. public string TotalZona { get; set; }
  12. public string Zona { get; set; }
  13. public int? StressPeriod { get; set; }
  14. }
  15. }