mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-09 12:19:12 +00:00
9 lines
220 B
C#
9 lines
220 B
C#
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace Ryujinx.Common.Logging
|
|||
|
{
|
|||
|
[JsonSerializable(typeof(LogEventArgsJson))]
|
|||
|
internal partial class LogEventJsonSerializerContext : JsonSerializerContext
|
|||
|
{
|
|||
|
}
|
|||
|
}
|