Piezometro.cs 511B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using WebApplication3.Clases;
  4. #nullable disable
  5. namespace WebApplication3.Models
  6. {
  7. public partial class Piezometer
  8. {
  9. public uint Id { get; set; }
  10. public string Name { get; set; }
  11. public string X { get; set; }
  12. public string Y { get; set; }
  13. public string Z { get; set; }
  14. public string Prof { get; set; }
  15. public string ScreenTop { get; set; }
  16. public string ScreenBot { get; set; }
  17. }
  18. }