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
43
43
public string CURRENCY_MARGIN { get ; set ; }
44
44
public string DESCRIPTION { get ; set ; }
45
45
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 ; }
46
48
47
- public override string ToString ( )
49
+ public override string ToString ( )
48
50
{
49
51
return JsonConvert . SerializeObject ( this ) ;
50
52
}
Original file line number Diff line number Diff line change 1
1
using Newtonsoft . Json ;
2
2
using System ;
3
3
using System . Collections . Generic ;
4
+ using System . ComponentModel . DataAnnotations ;
4
5
using System . Linq ;
5
6
using System . Text ;
6
7
using System . Threading . Tasks ;
@@ -32,4 +33,18 @@ public override string ToString()
32
33
return JsonConvert . SerializeObject ( this ) ;
33
34
}
34
35
}
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
+ }
35
50
}
You can’t perform that action at this time.
0 commit comments