using System; using System.Collections.Generic; #nullable disable namespace WebApplication3.Models { public partial class TsPiezometer { public uint Id { get; set; } public uint? PiezometerId { get; set; } public string Date { get; set; } public string Day { get; set; } public string Quote { get; set; } } }