mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
7 lines
149 B
C#
7 lines
149 B
C#
namespace NadekoBot.Modules.Gambling;
|
|
|
|
public readonly struct FlipResult
|
|
{
|
|
public long Won { get; init; }
|
|
public int Side { get; init; }
|
|
} |