blob: 132c45a444279e5f32c303b441865dcaf13aafd5 (
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
{
}
}
|