using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections; using System.Collections.Generic; using UnityEngine; namespace ET { [BsonIgnoreExtraElements] public class Account: Entity { public string Username { get; set; } public string Pwd { get; set; } public long UserId { get; set; } public string CreateIp{ get; set; } public List HistoryIpList{ get; set; } public string LastIp{ get; set; } public bool IsStopSeal { get; set; }//是否封号 public long LastLoginTime { get; set; }//最后登录时间 public HashSet identifyList; } }