Files
nadekobot/src/NadekoBot/_common/Gambling/Betdraw/BetdrawResult.cs

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