1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Aitex.Core.RT.IOCore
- {
- public struct IOScale
- {
- public string IOName;
- public double LogicMin;
- public double LogicMax;
- public double PhysicalMin;
- public double PhysicalMax;
- public IOScale(string name, double lMin, double lMax, double pMin, double pMax)
- {
- IOName = name;
- LogicMin = lMin;
- LogicMax = lMax;
- PhysicalMin = pMin;
- PhysicalMax = pMax;
- }
- }
- }
|