8 lines
207 B
C#
8 lines
207 B
C#
using System.Text.Json.Serialization;
|
|
using TanksServer.Models;
|
|
|
|
namespace TanksServer.Helpers;
|
|
|
|
[JsonSerializable(typeof(Player))]
|
|
internal sealed partial class AppSerializerContext: JsonSerializerContext;
|