ProtoTools/test/client/src/chuanqi/login/LoginCreate_C2S_Msg.ts
2020-10-22 15:52:53 +08:00

37 lines
431 B
TypeScript

/**
* 源地址: http://192.168.116.77/dokuwiki/doku.php?id=%E7%99%BB%E5%BD%95_1001-1100
*/
module giant.chuanqi
{
export interface LoginCreate_C2S_Msg
{
/**
* 用户id
*/
userId: string;
/**
* 角色名
*/
name: string;
/**
* 职业
*/
job: string;
/**
* 平台id
*/
pid: string;
/**
* 服务器id
*/
serverId: number;
/**
* 性别
*/
gender: number;
}
}