Files
telegram-bot/modules/Reputation/Data/UserReputation.cs
T

10 lines
193 B
C#
Raw Normal View History

namespace West.TelegramBot.Reputation.Data;
public class UserReputation
{
public long UserId { get; set; }
public long ChatId { get; set; }
public double Value { get; set; }
}