Files
nadekobot/src/NadekoBot/Modules/Games/Fish/FishChance.cs
2025-01-14 03:00:31 +00:00

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