1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-09 17:06:19 +00:00
CryptoExchange.Net/CryptoExchange.Net/Attributes/JsonOptionalPropertyAttribute.cs

12 lines
205 B
C#

using System;
namespace CryptoExchange.Net.Attributes
{
/// <summary>
/// Marks property as optional
/// </summary>
public class JsonOptionalPropertyAttribute : Attribute
{
}
}