TSPiezometer.cs 366B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace WebApplication3.Models
  5. {
  6. public partial class TsPiezometer
  7. {
  8. public uint Id { get; set; }
  9. public uint? PiezometerId { get; set; }
  10. public string Date { get; set; }
  11. public string Day { get; set; }
  12. public string Quote { get; set; }
  13. }
  14. }