1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Station
- {
-
-
-
- public class StationInfo
- {
-
-
-
- public string Name { get; set; }
-
-
-
- public string FullName { get; set; }
-
-
-
- public string Id { get; set; }
-
-
-
- public StationType Type { get; set; }
-
-
-
- public object Tag { get; set; }
- }
- }
|