@@ -11,10 +11,10 @@ public class MTrOffer
11
11
public long ? PartnerId { get ; set ; }
12
12
13
13
[ JsonPropertyName ( "created" ) ]
14
- public string Created { get ; set ; }
14
+ public DateTime Created { get ; set ; }
15
15
16
16
[ JsonPropertyName ( "updated" ) ]
17
- public string Updated { get ; set ; }
17
+ public DateTime Updated { get ; set ; }
18
18
19
19
[ JsonPropertyName ( "name" ) ]
20
20
public string Name { get ; set ; }
@@ -23,10 +23,10 @@ public class MTrOffer
23
23
public string Currency { get ; set ; }
24
24
25
25
[ JsonPropertyName ( "demo" ) ]
26
- public bool Demo { get ; set ; }
26
+ public bool IsDemo { get ; set ; }
27
27
28
28
[ JsonPropertyName ( "hidden" ) ]
29
- public bool Hidden { get ; set ; }
29
+ public bool IsHidden { get ; set ; }
30
30
31
31
[ JsonPropertyName ( "description" ) ]
32
32
public string Description { get ; set ; }
@@ -35,16 +35,16 @@ public class MTrOffer
35
35
public string ? MoneyManager { get ; set ; }
36
36
37
37
[ JsonPropertyName ( "initialDeposit" ) ]
38
- public double InitialDeposit { get ; set ; }
38
+ public decimal InitialDeposit { get ; set ; }
39
39
40
40
[ JsonPropertyName ( "leverage" ) ]
41
- public double Leverage { get ; set ; }
41
+ public int Leverage { get ; set ; }
42
42
43
43
[ JsonPropertyName ( "verificationRequired" ) ]
44
- public bool VerificationRequired { get ; set ; }
44
+ public bool IsVerificationRequired { get ; set ; }
45
45
46
46
[ JsonPropertyName ( "tradingAccountAutoCreation" ) ]
47
- public bool TradingAccountAutoCreation { get ; set ; }
47
+ public bool IsTradingAccountAutoCreation { get ; set ; }
48
48
49
49
[ JsonPropertyName ( "groupName" ) ]
50
50
public string GroupName { get ; set ; }
0 commit comments