mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
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; }
|
|
}
|
|
}
|