CTT/Server/Model/Game/Entity/Account/Account.cs

25 lines
609 B
C#

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<string> HistoryIpList{ get; set; }
public string LastIp{ get; set; }
public bool IsStopSeal { get; set; }//是否封号
public long LastLoginTime { get; set; }//最后登录时间
public HashSet<string> identifyList;
}
}