2016-11-15 12:01:02 +01:00
|
|
|
|
namespace NadekoBot.Services.Database.Models
|
2016-10-15 02:58:15 +02:00
|
|
|
|
{
|
|
|
|
|
public class CurrencyTransaction : DbEntity
|
|
|
|
|
{
|
|
|
|
|
public long Amount { get; set; }
|
|
|
|
|
public string Reason { get; set; }
|
|
|
|
|
public ulong UserId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|