12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Applications.UniversalApi_WebConsole_App.Models.TankMonitor
- {
- public enum Operation
- {
-
-
- TankView,
- TableView,
- UploadView,
- ChartView
- }
- public class PageNavigationInfo
- {
-
-
-
- public Operation CurrentTab { get; set; }
-
-
-
- public int Page { get; set; }
- }
- }
|