mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
9 lines
227 B
C#
9 lines
227 B
C#
#nullable disable
|
|
namespace NadekoBot.Modules.Gambling.WheelOfFortune;
|
|
|
|
public readonly struct WofResult
|
|
{
|
|
public int Index { get; init; }
|
|
public decimal Multiplier { get; init; }
|
|
public long Amount { get; init; }
|
|
} |