9 lines
189 B
C#
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; }
|
|
}
|
|
}
|