Simulacion.cs 331B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace WebApplication3.Models
  5. {
  6. public partial class Simulacion
  7. {
  8. public uint Id { get; set; }
  9. public uint? IdAcuifero { get; set; }
  10. public string Nombre { get; set; }
  11. public string IsolineImage { get; set; }
  12. }
  13. }