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