123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Applications.UniversalApi_WebConsole_App.Models.OnlineMonitor
- {
- public class OnlineMonitorInfo
- {
- public string mqttConnectionString { get; set; }
-
-
-
- public QueryInfo QueryInformation { get; set; }
-
-
-
- public PageNavigationInfo NavigationInfo { get; set; }
- }
- }
|