beteran-protobuf/proto/models/core/network.proto

10 lines
166 B
Protocol Buffer
Raw Normal View History

2022-07-15 06:14:09 +00:00
syntax = "proto3";
package bet.beteran.core.network;
message Client {
2022-07-27 06:45:53 +00:00
string client_ip = 1;
optional string site_url = 2;
2022-08-08 07:13:55 +00:00
optional string access_token = 3;
2022-07-15 06:14:09 +00:00
}