mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-12-22 14:42:50 +01:00
9 lines
339 B
C#
9 lines
339 B
C#
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace DHT.Utils.Http;
|
|
|
|
[JsonSourceGenerationOptions(PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase, GenerationMode = JsonSourceGenerationMode.Default)]
|
|
[JsonSerializable(typeof(JsonElement))]
|
|
public sealed partial class JsonElementContext : JsonSerializerContext;
|