blob: ac63d9a10f02a5ef3d48f7e8132dd47bb6420f19 (
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
{
}
}
|