mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
325 B
C#
12 lines
325 B
C#
#nullable disable
|
|
namespace Nadeko.Bot.Db.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; }
|
|
} |