1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-18 07:16:38 +00:00
Ryujinx/Ryujinx.Common/Logging/LogEventJsonSerializerContext.cs

9 lines
220 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace Ryujinx.Common.Logging
{
[JsonSerializable(typeof(LogEventArgsJson))]
internal partial class LogEventJsonSerializerContext : JsonSerializerContext
{
}
}