mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-01 02:10:14 +00:00
10 lines
294 B
C#
10 lines
294 B
C#
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace Ryujinx.Common.Configuration
|
|||
|
{
|
|||
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|||
|
[JsonSerializable(typeof(TitleUpdateMetadata))]
|
|||
|
public partial class TitleUpdateMetadataJsonSerializerContext : JsonSerializerContext
|
|||
|
{
|
|||
|
}
|
|||
|
}
|