mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-09 17:06:19 +00:00
12 lines
205 B
C#
12 lines
205 B
C#
using System;
|
|
|
|
namespace CryptoExchange.Net.Attributes
|
|
{
|
|
/// <summary>
|
|
/// Marks property as optional
|
|
/// </summary>
|
|
public class JsonOptionalPropertyAttribute : Attribute
|
|
{
|
|
}
|
|
}
|