mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-13 01:51:09 +00:00
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
|
|
{
|
|
}
|
|
}
|