TitleUpdateMetadataJsonSerializerContext.cs 294 B

12345678910
  1. using System.Text.Json.Serialization;
  2. namespace Ryujinx.Common.Configuration
  3. {
  4. [JsonSourceGenerationOptions(WriteIndented = true)]
  5. [JsonSerializable(typeof(TitleUpdateMetadata))]
  6. public partial class TitleUpdateMetadataJsonSerializerContext : JsonSerializerContext
  7. {
  8. }
  9. }