mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-12-26 01:36:59 +00:00
9 lines
218 B
C#
9 lines
218 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Logging
|
|
{
|
|
[JsonSerializable(typeof(LogEventArgsJson))]
|
|
internal partial class LogEventJsonSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|
|
}
|