[reputation] Add rating.

This commit is contained in:
West14
2022-02-14 14:39:55 +02:00
parent f80b5d0da8
commit e885613c58
6 changed files with 95 additions and 11 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace Kruzya.TelegramBot.Core.Data;
public interface IReputationEntity
{
public long UserId { get; set; }
public long ChatId { get; set; }
public double Value { get; set; }
}