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

9 lines
189 B
C#

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