using System.Text.Json.Serialization; namespace Ryujinx.Common.Configuration { [JsonConverter(typeof(JsonStringEnumConverter))] public enum MemoryManagerMode : byte { SoftwarePageTable, HostMapped, HostMappedUnsafe, } }