mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-26 21:42:22 -05:00
11 lines
343 B
C#
11 lines
343 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|
[JsonSerializable(typeof(List<DownloadableContentContainer>))]
|
|
public partial class DownloadableContentJsonSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|
|
} |