mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-21 13:20:55 -05: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
|
|
{
|
|
}
|
|
}
|