File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed
Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,10 @@ public class Asset
4343 public string CURRENCY_MARGIN { get ; set ; }
4444 public string DESCRIPTION { get ; set ; }
4545 public string PATH { get ; set ; }
46+ public List < Dictionary < string , string > > SESSION_QUOTE { get ; set ; }
47+ public List < Dictionary < string , string > > SESSION_TRADE { get ; set ; }
4648
47- public override string ToString ( )
49+ public override string ToString ( )
4850 {
4951 return JsonConvert . SerializeObject ( this ) ;
5052 }
Original file line number Diff line number Diff line change 11using Newtonsoft . Json ;
22using System ;
33using System . Collections . Generic ;
4+ using System . ComponentModel . DataAnnotations ;
45using System . Linq ;
56using System . Text ;
67using System . Threading . Tasks ;
@@ -32,4 +33,18 @@ public override string ToString()
3233 return JsonConvert . SerializeObject ( this ) ;
3334 }
3435 }
36+
37+ public class OHLC_Req
38+ {
39+ //public string MSG { get; set; }
40+ [ Required ]
41+ public string SYMBOL { get ; set ; }
42+ [ Required ]
43+ public string TIMEFRAME { get ; set ; }
44+ public int ? DEPTH { get ; set ; }
45+ public override string ToString ( )
46+ {
47+ return JsonConvert . SerializeObject ( this ) ;
48+ }
49+ }
3550}
You can’t perform that action at this time.
0 commit comments