mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-01-12 02:31:08 +00:00
As per the remark XMLdoc on the type: Get rid of this converter if dotnet supports similar functionality out of the box.
12 lines
237 B
C#
12 lines
237 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter<BackendThreading>))]
|
|
public enum BackendThreading
|
|
{
|
|
Auto,
|
|
Off,
|
|
On,
|
|
}
|
|
}
|