mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
338 B
C#
12 lines
338 B
C#
#nullable disable
|
|
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() { Amount = Amount, Reason = Reason, UserId = UserId };
|
|
} |