2022-08-08 01:46:20 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package bet.beteran.domain;
|
|
|
|
|
|
|
|
message Site {
|
|
|
|
string id = 1;
|
|
|
|
string url = 2;
|
2022-08-10 01:50:01 +00:00
|
|
|
string name = 3;
|
|
|
|
string path = 4;
|
|
|
|
bool show = 5;
|
|
|
|
bool can_use = 6;
|
2022-08-10 02:28:41 +00:00
|
|
|
string memo = 7;
|
|
|
|
uint64 expires_at = 8;
|
|
|
|
uint64 created_at = 9;
|
|
|
|
uint64 updated_at = 10;
|
2022-08-08 01:46:20 +00:00
|
|
|
}
|