NadekoBot/NadekoBot.Core/Services/Database/Models/RewardedUser.cs

13 lines
318 B
C#
Raw Normal View History

using System;
2017-04-01 19:40:13 +00:00
namespace NadekoBot.Services.Database.Models
{
2017-04-01 22:01:02 +00:00
public class RewardedUser : DbEntity
{
public ulong UserId { get; set; }
2017-05-02 08:52:15 +00:00
public string PatreonUserId { get; set; }
public int AmountRewardedThisMonth { get; set; }
public DateTime LastReward { get; set; }
}
}