Initial split of the modules
This commit is contained in:
12
NadekoBot.Core/Services/Database/Models/RewardedUser.cs
Normal file
12
NadekoBot.Core/Services/Database/Models/RewardedUser.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace NadekoBot.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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user