mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
11 lines
291 B
C#
11 lines
291 B
C#
using Nadeko.Econ;
|
|
|
|
namespace NadekoBot.Modules.Gambling.Betdraw;
|
|
|
|
public readonly struct BetdrawResult
|
|
{
|
|
public decimal Won { get; init; }
|
|
public decimal Multiplier { get; init; }
|
|
public BetdrawResultType ResultType { get; init; }
|
|
public RegularCard Card { get; init; }
|
|
} |