blob: cc89cb128bb7e4fbb9e8e507cf7aa6188b81eb34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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
{
}
}
|