9 lines
No EOL
249 B
C#
9 lines
No EOL
249 B
C#
namespace Ellie.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; }
|
|
} |