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

9 lines
184 B
C#
Raw Normal View History

namespace NadekoBot.Services.Database.Models
{
public class Currency : DbEntity
{
public ulong UserId { get; set; }
public long Amount { get; set; }
}
}