12 lines
216 B
Protocol Buffer
12 lines
216 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
import "BaseResponse.proto";
|
||
|
|
||
|
message FaceBookAuthResponse {
|
||
|
required BaseResponse _BaseResponse = 1;
|
||
|
required uint64 _FBUserID = 2;
|
||
|
optional string _FBUserName = 3;
|
||
|
}
|