mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 06:37:43 +02:00
11 lines
341 B
C#
11 lines
341 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
|
|
{
|
|
}
|
|
}
|