Files
nadekobot/src/Nadeko.Bot.Db/Models/CurrencyTransaction.cs
2023-03-14 15:48:59 +01:00

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; }
}