13 lines
323 B
C#
Raw Normal View History

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