16 lines
293 B
Protocol Buffer
16 lines
293 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package bet.beteran.c2se.frontend.identity;
|
|
|
|
// subject = bet.beteran.c2se.frontend.identity.Signin
|
|
message SigninRequest {
|
|
string token = 1;
|
|
string security_code = 2;
|
|
string username = 3;
|
|
string password = 4;
|
|
}
|
|
|
|
message SigninResponse {
|
|
string session_id = 1;
|
|
}
|