mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-04 05:00:24 +08:00
14 lines
225 B
Protocol Buffer
14 lines
225 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message AuthorityNode {
|
|
int64 id = 1;
|
|
bool isOn = 2;
|
|
string uniqueId = 3;
|
|
string secret = 4;
|
|
string name = 5;
|
|
string description = 6;
|
|
bytes statusJSON = 7;
|
|
} |