beteran-protobuf/proto/models/resource_action.proto

17 lines
314 B
Protocol Buffer
Raw Normal View History

2022-08-08 01:46:20 +00:00
syntax = "proto3";
2022-08-13 20:18:21 +00:00
package bet.beteran.resource_action;
2022-08-08 01:46:20 +00:00
2022-08-13 20:18:21 +00:00
import "models/resource.proto";
2022-08-08 01:46:20 +00:00
message ResourceAction {
string id = 1;
2022-08-13 20:18:21 +00:00
bet.beteran.resource.Resource resource = 2;
2022-08-08 01:46:20 +00:00
string name = 3;
string key = 4;
string description = 5;
bool can_use = 6;
uint64 created_at = 7;
uint64 updated_at = 8;
}