aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/TitleUpdateMetadataJsonSerializerContext.cs
blob: 4cfd232c7a1d4b9669c155b60cdaa01e819fe550 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.Text.Json.Serialization;

namespace Ryujinx.Common.Configuration
{
    [JsonSourceGenerationOptions(WriteIndented = true)]
    [JsonSerializable(typeof(TitleUpdateMetadata))]
    public partial class TitleUpdateMetadataJsonSerializerContext : JsonSerializerContext
    {
    }
}