Files
Ryujinx/src/Ryujinx.Common/Configuration/DownloadableContentJsonSerializerContext.cs
2023-04-27 23:51:14 +02:00

11 lines
343 B
C#

using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Ryujinx.Common.Configuration
{
[JsonSourceGenerationOptions(WriteIndented = true)]
[JsonSerializable(typeof(List<DownloadableContentContainer>))]
public partial class DownloadableContentJsonSerializerContext : JsonSerializerContext
{
}
}