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

15 lines
252 B
C#

using System;
using System.Collections.Generic;
namespace ET
{
public class AccountLog:Entity
{
public DateTime time;
public string cmd;
public long uid;
public int itemId;
public long count;
}
}