aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/TitleUpdateMetadataJsonSerializerContext.cs
blob: a4b6efff4f9442a273547a3e5b83e1fb797d5969 (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
    {
    }
}