NadekoBot/NadekoBot.Core/Services/Database/Models/Donator.cs

10 lines
233 B
C#
Raw Normal View History

namespace NadekoBot.Core.Services.Database.Models
2016-08-24 17:04:24 +00:00
{
public class Donator : DbEntity
{
public ulong UserId { get; set; }
public string Name { get; set; }
public int Amount { get; set; } = 0;
}
}