123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using WebApplication3.Clases;
-
- #nullable disable
-
- namespace WebApplication3.Models
- {
- public partial class Piezometer
- {
- public uint Id { get; set; }
- public string Name { get; set; }
- public string X { get; set; }
- public string Y { get; set; }
- public string Z { get; set; }
- public string Prof { get; set; }
- public string ScreenTop { get; set; }
- public string ScreenBot { get; set; }
- }
- }
|