More cleanup and restructuring, nothing of note

This commit is contained in:
Kwoth
2022-01-02 04:16:34 +01:00
parent 3428073208
commit 25f249ab5e
5 changed files with 5 additions and 10 deletions

View 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; }
}