servicepoint-tanks/TanksServer/Interactivity/AppSerializerContext.cs

7 lines
187 B
C#
Raw Normal View History

2024-04-07 01:27:11 +02:00
using System.Text.Json.Serialization;
2024-04-10 19:25:45 +02:00
namespace TanksServer.Interactivity;
2024-04-07 01:27:11 +02:00
[JsonSerializable(typeof(Player))]
2024-04-07 13:02:49 +02:00
internal sealed partial class AppSerializerContext: JsonSerializerContext;