[reputation] Move reputation to separate module.

This commit is contained in:
West14
2022-02-14 00:18:53 +02:00
parent 6f02031e65
commit a4a44198c5
20 changed files with 595 additions and 228 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace West.TelegramBot.Reputation.Data;
public class UserReputation
{
public long UserId { get; set; }
public long ChatId { get; set; }
public double Value { get; set; }
}