mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-14 22:16:43 +00:00
9 lines
284 B
C#
9 lines
284 B
C#
|
using Ryujinx.Common.Utilities;
|
|||
|
|
|||
|
namespace Ryujinx.Ui.Common.Configuration
|
|||
|
{
|
|||
|
internal static class ConfigurationFileFormatSettings
|
|||
|
{
|
|||
|
public static readonly ConfigurationJsonSerializerContext SerializerContext = new(JsonHelper.GetDefaultSerializerOptions());
|
|||
|
}
|
|||
|
}
|