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

17 lines
307 B
Protocol Buffer

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