mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
9 lines
238 B
C#
9 lines
238 B
C#
namespace Nadeko.Econ.Gambling;
|
|
|
|
public readonly struct BetrollResult
|
|
{
|
|
public int Roll { get; init; }
|
|
public decimal Multiplier { get; init; }
|
|
public decimal Threshold { get; init; }
|
|
public decimal Won { get; init; }
|
|
} |