beteran-protobuf/proto/models/domain/site.proto

14 lines
222 B
Protocol Buffer
Raw Normal View History

2022-08-08 01:46:20 +00:00
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;
}