using System;
namespace CryptoExchange.Net.Converters
{
///
/// Mark property as an index in the array
///
[AttributeUsage(AttributeTargets.Property)]
public class ArrayPropertyAttribute : Attribute
{
///
/// The index in the array
///
public int Index { get; }
///
/// ctor
///
///
public ArrayPropertyAttribute(int index)
{
Index = index;
}
}
}