Refactor done

This commit is contained in:
Master Kwoth
2016-04-15 00:50:44 +02:00
parent b0ceb84a41
commit 067db1b81c
37 changed files with 46 additions and 44 deletions

View File

@@ -0,0 +1,7 @@
namespace NadekoBot.DataModels {
internal class CurrencyState : IDataModel {
public long Value { get; set; }
[SQLite.Unique]
public long UserId { get; set; }
}
}