2017-10-13 04:14:54 +00:00
|
|
|
|
namespace NadekoBot.Core.Services.Database.Models
|
2017-01-12 19:26:55 +00:00
|
|
|
|
{
|
|
|
|
|
public class CommandPrice : DbEntity
|
|
|
|
|
{
|
|
|
|
|
public int Price { get; set; }
|
2017-01-12 22:49:17 +00:00
|
|
|
|
//this is unique
|
2017-01-12 19:26:55 +00:00
|
|
|
|
public string CommandName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|