mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-07 16:06:15 +00:00
22 lines
698 B
C#
22 lines
698 B
C#
using CryptoExchange.Net.UnitTests.TestImplementations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CryptoExchange.Net.UnitTests
|
|
{
|
|
[JsonSerializable(typeof(string))]
|
|
[JsonSerializable(typeof(int))]
|
|
[JsonSerializable(typeof(Dictionary<string, string>))]
|
|
[JsonSerializable(typeof(IDictionary<string, string>))]
|
|
[JsonSerializable(typeof(Dictionary<string, object>))]
|
|
[JsonSerializable(typeof(IDictionary<string, object>))]
|
|
[JsonSerializable(typeof(TestObject))]
|
|
internal partial class TestSerializerContext : JsonSerializerContext
|
|
{
|
|
}
|
|
}
|