2023-12-04 14:17:13 +01:00
|
|
|
using Ryujinx.Common.Utilities;
|
2023-04-03 13:14:19 +03:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
2024-02-11 02:09:18 +00:00
|
|
|
namespace Ryujinx.UI.Common.Configuration.System
|
2020-03-19 23:37:55 +01:00
|
|
|
{
|
2023-04-03 13:14:19 +03:00
|
|
|
[JsonConverter(typeof(TypedStringEnumConverter<Region>))]
|
2020-03-19 23:37:55 +01:00
|
|
|
public enum Region
|
|
|
|
|
{
|
|
|
|
|
Japan,
|
|
|
|
|
USA,
|
|
|
|
|
Europe,
|
|
|
|
|
Australia,
|
|
|
|
|
China,
|
|
|
|
|
Korea,
|
2023-06-29 02:39:22 +02:00
|
|
|
Taiwan,
|
2020-03-19 23:37:55 +01:00
|
|
|
}
|
|
|
|
|
}
|