beteran-protobuf/proto/models/site.proto

17 lines
305 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.site;
2022-08-08 01:46:20 +00:00
message Site {
string id = 1;
string url = 2;
2022-08-10 02:30:16 +00:00
optional string name = 3;
optional string path = 4;
2022-08-10 01:50:01 +00:00
bool show = 5;
bool can_use = 6;
2022-08-10 02:30:16 +00:00
optional string memo = 7;
optional uint64 expires_at = 8;
2022-08-10 02:28:41 +00:00
uint64 created_at = 9;
uint64 updated_at = 10;
2022-08-08 01:46:20 +00:00
}