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