NadekoBot/NadekoBot.Core/Services/Database/Models/CommandPrice.cs

10 lines
217 B
C#
Raw Normal View History

namespace NadekoBot.Services.Database.Models
2017-01-12 19:26:55 +00:00
{
public class CommandPrice : DbEntity
{
public int Price { get; set; }
//this is unique
2017-01-12 19:26:55 +00:00
public string CommandName { get; set; }
}
}