DownloadableContentJsonSerializerContext.cs 343 B

1234567891011
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. namespace Ryujinx.Common.Configuration
  4. {
  5. [JsonSourceGenerationOptions(WriteIndented = true)]
  6. [JsonSerializable(typeof(List<DownloadableContentContainer>))]
  7. public partial class DownloadableContentJsonSerializerContext : JsonSerializerContext
  8. {
  9. }
  10. }