This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/Ellie.Bot.Common/_common/AddRemove.cs
2023-08-03 15:11:17 +12:00

10 lines
No EOL
177 B
C#

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