123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- namespace NEIntelligentControl2.Models.BoostStation
- {
-
-
-
- public class BoostStationPointInfo
- {
-
-
-
- public Point Coordinate { get; set; }
-
-
-
- public string Type { get; set; }
-
-
-
- public string DataTag { get; set; }
-
-
-
- public Point CenterCoordinate { get; set; }
-
-
-
- public int Angle { get; set; }
-
-
-
- public string Info { get; set; }
-
-
-
- public int Proportion { get; set; }
-
-
-
- public bool IsNegate { get; set; }
- }
- }
|