NadekoBot/NadekoBot.Core/Services/Database/Models/Donator.cs
2017-10-13 06:14:54 +02:00

10 lines
233 B
C#

namespace NadekoBot.Core.Services.Database.Models
{
public class Donator : DbEntity
{
public ulong UserId { get; set; }
public string Name { get; set; }
public int Amount { get; set; } = 0;
}
}