NadekoBot/NadekoBot.Core/Services/Database/Models/CommandPrice.cs
2017-10-13 06:14:54 +02:00

10 lines
222 B
C#

namespace NadekoBot.Core.Services.Database.Models
{
public class CommandPrice : DbEntity
{
public int Price { get; set; }
//this is unique
public string CommandName { get; set; }
}
}