beteran-protobuf/proto/models/domain/site.proto
2022-08-10 02:28:41 +00:00

17 lines
271 B
Protocol Buffer

syntax = "proto3";
package bet.beteran.domain;
message Site {
string id = 1;
string url = 2;
string name = 3;
string path = 4;
bool show = 5;
bool can_use = 6;
string memo = 7;
uint64 expires_at = 8;
uint64 created_at = 9;
uint64 updated_at = 10;
}