mirror of
https://github.com/AlexMacocian/ServerManagementUtils.git
synced 2026-07-16 15:49:48 +00:00
8 lines
244 B
C#
8 lines
244 B
C#
using System.Collections.Concurrent;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Robin.Serialization;
|
|
|
|
[JsonSerializable(typeof(ConcurrentDictionary<string, long>))]
|
|
public partial class SerializationContext : JsonSerializerContext { }
|