using Bro.Common.Base;
|
using Bro.Common.Helper;
|
using Bro.Common.Interface;
|
using Bro.UI.Device.Winform;
|
|
namespace Bro.Device.GTSCard
|
{
|
|
[Device("GTSCard", "固高板卡", EnumHelper.DeviceAttributeType.OperationConfig)]
|
public class GTSCardOperationConfig : MotionCardOperationConfigBase
|
{
|
}
|
|
[Device("GTSCard", "固高板卡", EnumHelper.DeviceAttributeType.InitialConfig)]
|
public class GTSCardInitialConfig : MotionCardInitialConfigBase
|
{
|
|
}
|
|
[Device("GTSCard", "固高板卡", EnumHelper.DeviceAttributeType.RunCtrl)]
|
public class GTSCardRunCtrl : CtrlMotionCardRunBase
|
{
|
public GTSCardRunCtrl(IDevice device) : base(device) { }
|
}
|
|
}
|