mirror of
				https://github.com/JKorf/CryptoExchange.Net
				synced 2025-10-31 10:27:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			398 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			398 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Text.Json.Serialization;
 | |
| 
 | |
| namespace CryptoExchange.Net.UnitTests.TestImplementations
 | |
| {
 | |
|     public class TestObject
 | |
|     {
 | |
|         [JsonPropertyName("other")]
 | |
|         public string StringData { get; set; }
 | |
|         [JsonPropertyName("intData")]
 | |
|         public int IntData { get; set; }
 | |
|         [JsonPropertyName("decimalData")]
 | |
|         public decimal DecimalData { get; set; }
 | |
|     }
 | |
| }
 |