10 lines
218 B
C#
10 lines
218 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Logging
|
|
{
|
|
[JsonSerializable(typeof(LogEventArgsJson))]
|
|
internal partial class LogEventJsonSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|
|
}
|