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