Files
NadekoBot/NadekoBot/_Models/DataModels/CommandModel.cs
Master Kwoth 067db1b81c Refactor done
2016-04-15 00:50:44 +02:00

12 lines
402 B
C#

namespace NadekoBot.DataModels {
internal class Command : IDataModel {
public long UserId { get; set; }
public string UserName { get; set; }
public long ServerId { get; set; }
public string ServerName { get; set; }
public long ChannelId { get; set; }
public string ChannelName { get; set; }
public string CommandName { get; set; }
}
}