mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-10-28 00:48:40 +00:00
12 lines
224 B
C#
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
|
|
{
|
|
}
|