15 lines
313 B
Protocol Buffer
15 lines
313 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseResponse.proto";
|
||
|
|
||
|
message ScanImageResponse {
|
||
|
required BaseResponse _BaseResponse = 1;
|
||
|
required uint32 _ClientScanID = 2;
|
||
|
required uint32 _Type = 3;
|
||
|
optional string _DescriptionXML = 4;
|
||
|
required uint32 _EndFlag = 5;
|
||
|
required uint32 _ImageType = 6;
|
||
|
}
|