9 lines
184 B
C#
9 lines
184 B
C#
namespace NadekoBot.Services.Database.Models
|
|
{
|
|
public class Currency : DbEntity
|
|
{
|
|
public ulong UserId { get; set; }
|
|
public long Amount { get; set; }
|
|
}
|
|
}
|