mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-01 10:39:50 -06:00
12 lines
341 B
C#
12 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
|
|
{
|
|
}
|
|
}
|