re-organze namespace
This commit is contained in:
12
ModpackUpdater/Side.cs
Normal file
12
ModpackUpdater/Side.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Converters;
|
||||
|
||||
namespace ModpackUpdater;
|
||||
|
||||
[JsonConverter(typeof(StringEnumConverter)), Flags]
|
||||
public enum Side
|
||||
{
|
||||
Client = 1,
|
||||
Server = 2,
|
||||
Both = Client | Server,
|
||||
}
|
||||
Reference in New Issue
Block a user