mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
9 lines
250 B
C#
9 lines
250 B
C#
namespace Nadeko.Econ.Gambling;
|
|
|
|
public readonly struct LuLaResult
|
|
{
|
|
public int Index { get; init; }
|
|
public decimal Multiplier { get; init; }
|
|
public decimal Won { get; init; }
|
|
public IReadOnlyList<decimal> Multipliers { get; init; }
|
|
} |