blob: 0dbc0a301d54dd7738c7098924f7b68ee196ffa5 (
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
{
}
}
|