public APIRequest(CmdId cmdId, Type paramType, CmdId responseCmdId, APIFeatureState featureState = APIFeatureState.Untested) { CmdId = cmdId; ParamType = paramType; ResponseCmdId = responseCmdId; FeatureState = featureState; }
public APIEvent(CmdId cmdId, Type paramType, APIFeatureState featureState = APIFeatureState.Untested) { this.CmdId = cmdId; this.ParamType = paramType; this.FeatureState = featureState; }