mirror of
				https://github.com/JKorf/CryptoExchange.Net
				synced 2025-10-31 02:17:45 +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; }
 | |
|     }
 | |
| }
 |