mirror of
https://github.com/AlexMacocian/ServerManagementUtils.git
synced 2026-07-15 15:19:58 +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 { }
|