Files
nadekobot/src/NadekoBot/Common/AddRemove.cs
2021-12-29 06:07:16 +01:00

10 lines
181 B
C#

#nullable disable
namespace NadekoBot.Common;
public enum AddRemove
{
Add = int.MinValue,
Remove = int.MinValue + 1,
Rem = int.MinValue + 1,
Rm = int.MinValue + 1
}