mirror of
				https://github.com/JKorf/CryptoExchange.Net
				synced 2025-11-04 04:17:32 +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; }
 | 
						|
    }
 | 
						|
}
 |