mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-12-03 15:22:23 -05:00
10 lines
282 B
C#
10 lines
282 B
C#
using Ryujinx.Common.Utilities;
|
|
|
|
namespace Ryujinx.Ui.Common.Configuration
|
|
{
|
|
internal static class ConfigurationFileFormatSettings
|
|
{
|
|
public static readonly ConfigurationJsonSerializerContext SerializerContext = new(JsonHelper.GetDefaultSerializerOptions());
|
|
}
|
|
}
|