mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-07 16:06:15 +00:00
13 lines
299 B
C#
13 lines
299 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace CryptoExchange.Net.UnitTests.TestImplementations
|
|
{
|
|
public class TestObject
|
|
{
|
|
[JsonProperty("other")]
|
|
public string StringData { get; set; }
|
|
public int IntData { get; set; }
|
|
public decimal DecimalData { get; set; }
|
|
}
|
|
}
|