aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Logging/LogEventJsonSerializerContext.cs
blob: c5dd6114e295517d1b33954a4031d60cec673ba6 (plain) (blame)
1
2
3
4
5
6
7
8
9
using System.Text.Json.Serialization;

namespace Ryujinx.Common.Logging
{
    [JsonSerializable(typeof(LogEventArgsJson))]
    internal partial class LogEventJsonSerializerContext : JsonSerializerContext
    {
    }
}