mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
17 lines
417 B
C#
17 lines
417 B
C#
namespace NadekoBot.Services.Database.Models
|
|
{
|
|
public class CurrencyTransaction : DbEntity
|
|
{
|
|
public long Amount { get; set; }
|
|
public string Reason { get; set; }
|
|
public ulong UserId { get; set; }
|
|
|
|
public CurrencyTransaction Clone() => new CurrencyTransaction
|
|
{
|
|
Amount = Amount,
|
|
Reason = Reason,
|
|
UserId = UserId,
|
|
};
|
|
}
|
|
}
|