123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Edge.WebHost.Models.TankMonitor
- {
- public class TankMonitorInfo
- {
-
- public string mqttConnectionString { get; set; }
-
-
-
- public QueryInfo QueryInformation { get; set; }
-
-
-
- public PageNavigationInfo NavigationInfo { get; set; }
- public CurrentTank currentTank { get; set; }
- }
- public class CurrentTank
- {
- public string currentTankID { get; set; }
- public string currentFuelID { get; set; }
- public string currentFuelKind { get; set; }
- }
-
-
-
-
-
-
-
-
-
-
-
- }
|