Files
nadekobot/NadekoBot.Core/Services/Database/Models/Stake.cs
2021-09-06 21:29:22 +02:00

15 lines
467 B
C#

namespace NadekoBot.Core.Services.Database.Models
{
/// <summary>
/// Used to set stakes for gambling games which don't reward right away -
/// like blackjack. If the bot is restarted mid game, users will get their funds back
/// when the bot is back up.
/// </summary>
public class Stake : DbEntity
{
public ulong UserId { get; set; }
public long Amount { get; set; }
public string Source { get; set; }
}
}