12 lines
211 B
Protocol Buffer
12 lines
211 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
|
||
|
message CustomizedInfo {
|
||
|
required uint32 _BrandFlag = 1;
|
||
|
optional string _ExternalInfo = 2;
|
||
|
optional string _BrandInfo = 3;
|
||
|
optional string _BrandIconURL = 4;
|
||
|
}
|