Files
EdgeAPI/internal/rpc/protos/model_node_cluster.proto

12 lines
183 B
Protocol Buffer
Raw Normal View History

2020-07-24 09:17:48 +08:00
syntax = "proto3";
option go_package = "./pb";
package pb;
2020-07-29 19:02:28 +08:00
message NodeCluster {
2020-07-24 09:17:48 +08:00
int64 id = 1;
string name = 2;
int64 createdAt = 3;
2020-08-30 16:12:00 +08:00
int64 grantId = 4;
string installDir = 5;
2020-07-24 09:17:48 +08:00
}