1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-10-28 00:48:40 +00:00
CryptoExchange.Net/CryptoExchange.Net/Attributes/JsonConversionAttribute.cs
2025-08-24 21:58:52 +02:00

12 lines
224 B
C#

using System;
namespace CryptoExchange.Net.Attributes;
/// <summary>
/// Used for conversion in ArrayConverter
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public class JsonConversionAttribute: Attribute
{
}