mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 00:16:27 +00:00
12 lines
237 B
C#
12 lines
237 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CryptoExchange.Net.Attributes
|
|
{
|
|
public class JsonOptionalPropertyAttribute : Attribute
|
|
{
|
|
public JsonOptionalPropertyAttribute() { }
|
|
}
|
|
}
|