mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 10:18:27 -04:00
10 lines
257 B
C#
10 lines
257 B
C#
#nullable disable
|
|
namespace NadekoBot.Modules.Gambling;
|
|
|
|
public class SlotResponse
|
|
{
|
|
public float Multiplier { get; set; }
|
|
public long Won { get; set; }
|
|
public List<int> Rolls { get; set; } = new();
|
|
public GamblingError Error { get; set; }
|
|
} |