10 lines
233 B
C#
Raw Normal View History

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