mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 08:08:32 +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
|
|||
|
{
|
|||
|
}
|
|||
|
}
|