14 lines
222 B
Protocol Buffer
14 lines
222 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package bet.beteran.domain;
|
||
|
|
||
|
message Site {
|
||
|
string id = 1;
|
||
|
string url = 2;
|
||
|
bool show = 3;
|
||
|
bool can_use = 4;
|
||
|
uint64 created_at = 5;
|
||
|
uint64 updated_at = 6;
|
||
|
optional uint64 deleted_at = 7;
|
||
|
}
|