9 lines
No EOL
246 B
C#
9 lines
No EOL
246 B
C#
namespace EllieBot.Modules.Gambling;
|
|
|
|
public readonly struct SlotResult
|
|
{
|
|
public decimal Multiplier { get; init; }
|
|
public byte[] Rolls { get; init; }
|
|
public decimal Won { get; init; }
|
|
public SlotWinType WinType { get; init; }
|
|
} |