mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
More cleanup and restructuring, nothing of note
This commit is contained in:
10
src/NadekoBot/Modules/Gambling/Slot/SlotResponse.cs
Normal file
10
src/NadekoBot/Modules/Gambling/Slot/SlotResponse.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
#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; }
|
||||
}
|
Reference in New Issue
Block a user