1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IntelligentControlForsx.Model
- {
- class PointGroup
- {
- public System.Drawing.Point LabelPoint1 { get; set; }
- public System.Drawing.Point DevicePoint1 { get; set; }
- public System.Drawing.Point TablePoint1 { get; set; }
- }
- }
|