beteran-protobuf/proto/models/resource.proto

15 lines
245 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;
2022-08-08 01:46:20 +00:00
message Resource {
string id = 1;
Resource parent = 2;
string name = 3;
string key = 4;
string description = 5;
bool can_use = 6;
uint64 created_at = 7;
uint64 updated_at = 8;
}