10 lines
222 B
C#
Raw Normal View History

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