Files
minecraft-modpack-updater/ModpackUpdater/Side.cs
2024-09-06 08:45:36 +02:00

13 lines
221 B
C#

using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace ModpackUpdater;
[JsonConverter(typeof(StringEnumConverter)), Flags]
public enum Side
{
Client = 1,
Server = 2,
Both = Client | Server,
}