mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
- Added .curtr command which lets you see full information about one of your own transactions with the specified id - Added .WithAuthor(IUser) extension for embedbuilder
12 lines
339 B
C#
12 lines
339 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class CurrencyTransaction : DbEntity
|
|
{
|
|
public long Amount { get; set; }
|
|
public string Note { get; set; }
|
|
public ulong UserId { get; set; }
|
|
public string Type { get; set; }
|
|
public string Extra { get; set; }
|
|
public ulong? OtherId { get; set; }
|
|
} |