syntax = "proto3"; package bet.beteran.c2se.frontend.identity; import "protobuf/rpc/error.proto"; // subject = bet.beteran.c2se.frontend.identity.Signin message SigninRequest { string security_code_hash = 1; string security_code = 2; string username = 3; string password = 4; } message SigninResponse { message Result { string access_token = 1; } optional bet.protobuf.rpc.Error error = 1; optional Result result = 2; }