mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
8 lines
196 B
C#
8 lines
196 B
C#
namespace NadekoBot.Modules.Games;
|
|
|
|
public sealed class FishChance
|
|
{
|
|
public int Fish { get; set; } = 75;
|
|
public int Trash { get; set; } = 20;
|
|
public int Nothing { get; set; } = 0;
|
|
} |