Files
nadekobot/src/NadekoBot/Db/Models/CurrencyTransaction.cs
2024-04-27 16:03:48 +00:00

12 lines
324 B
C#

#nullable disable
namespace NadekoBot.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; }
}