示例#1
0
 public AccountDetail(long id, string platformAccount, string userName,
                      int sex, string headUrl, int type,
                      LevelInfo levelInfo, GameInfo gameInfo, MoneyInfo moneyInfo)
 {
     Id = id;
     PlatformAccount = platformAccount;
     UserName        = userName;
     Sex             = sex;
     HeadUrl         = headUrl;
     Type            = type;
     LevelInfo       = levelInfo;
     GameInfo        = gameInfo;
     MoneyInfo       = moneyInfo;
 }
示例#2
0
 public AccountResponse(long id, string platformAccount,
                        string userName, int sex, string headUrl,
                        string token, MoneyInfo moneyInfo,
                        string longConnectHost, bool isRegister, int type)
 {
     Id = id;
     PlatformAccount = platformAccount;
     UserName        = userName;
     Sex             = sex;
     HeadUrl         = headUrl;
     Token           = token;
     MoneyInfo       = moneyInfo;
     LongConnectHost = longConnectHost;
     IsRegister      = isRegister;
     Type            = type;
 }