13 lines
323 B
C#
13 lines
323 B
C#
using System;
|
|
|
|
namespace NadekoBot.Core.Services.Database.Models
|
|
{
|
|
public class RewardedUser : DbEntity
|
|
{
|
|
public ulong UserId { get; set; }
|
|
public string PatreonUserId { get; set; }
|
|
public int AmountRewardedThisMonth { get; set; }
|
|
public DateTime LastReward { get; set; }
|
|
}
|
|
}
|