Files
telegram-bot/Core/Data/IReputationEntity.cs
T

8 lines
194 B
C#
Raw Normal View History

2022-02-14 14:39:55 +02:00
namespace Kruzya.TelegramBot.Core.Data;
public interface IReputationEntity
{
public long UserId { get; set; }
public long ChatId { get; set; }
public double Value { get; set; }
}