.liqu can be ordered by keywords (default) or id now, closes #1857

This commit is contained in:
Master Kwoth
2017-11-20 02:48:09 +01:00
parent 8fb21d1a3e
commit a0c5b469b8
5 changed files with 23 additions and 9 deletions

View File

@ -13,4 +13,11 @@ namespace NadekoBot.Core.Services.Database.Models
[Required]
public string Text { get; set; }
}
public enum OrderType
{
Id,
Keyword
}
}