Files
caliverse_server/Protocol/proto/UGQ_Api.proto
2025-05-01 07:20:41 +09:00

16 lines
179 B
Protocol Buffer

syntax = "proto3";
option csharp_namespace = "UGQApiServer";
message LoginRequest
{
string username = 1;
string password = 2;
}
message LoginResponse
{
string token = 1;
}