mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
15 lines
467 B
C#
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; }
|
|
}
|
|
}
|