You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
680 B

1 month ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Sog;
using ProtoCSStruct;
namespace Rank
{
public class PlayerInfoRank
{
// 只读属性
public long Chip => roleBase.Chip;
public long UserID; //用户id
public AccountInfo accountInfo;
public DBRoleBase roleBase;
public string Lang; //语言
public string IpAddr = ""; //ip地址
public uint GameServerID; //用户所在的游戏服务器id
public long LoginTime; //登录时间
public long LogoutTime; //登出时间
public bool IsOnline; // 是否在线
}
}