mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-07 07:10:25 +08:00
14 lines
209 B
Protocol Buffer
14 lines
209 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message Script {
|
|
int64 id = 1;
|
|
int64 userId = 2;
|
|
bool isOn = 3;
|
|
string name = 4;
|
|
string filename = 5;
|
|
string code = 6;
|
|
int64 updatedAt = 7;
|
|
} |