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