Files
minecraft-modpack-updater/ModpackUpdater.Model/Side.cs
2024-06-20 06:30:24 +02:00

13 lines
227 B
C#

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