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