@@ -11,10 +11,10 @@ public class MTrOffer
1111 public long ? PartnerId { get ; set ; }
1212
1313 [ JsonPropertyName ( "created" ) ]
14- public string Created { get ; set ; }
14+ public DateTime Created { get ; set ; }
1515
1616 [ JsonPropertyName ( "updated" ) ]
17- public string Updated { get ; set ; }
17+ public DateTime Updated { get ; set ; }
1818
1919 [ JsonPropertyName ( "name" ) ]
2020 public string Name { get ; set ; }
@@ -23,10 +23,10 @@ public class MTrOffer
2323 public string Currency { get ; set ; }
2424
2525 [ JsonPropertyName ( "demo" ) ]
26- public bool Demo { get ; set ; }
26+ public bool IsDemo { get ; set ; }
2727
2828 [ JsonPropertyName ( "hidden" ) ]
29- public bool Hidden { get ; set ; }
29+ public bool IsHidden { get ; set ; }
3030
3131 [ JsonPropertyName ( "description" ) ]
3232 public string Description { get ; set ; }
@@ -35,16 +35,16 @@ public class MTrOffer
3535 public string ? MoneyManager { get ; set ; }
3636
3737 [ JsonPropertyName ( "initialDeposit" ) ]
38- public double InitialDeposit { get ; set ; }
38+ public decimal InitialDeposit { get ; set ; }
3939
4040 [ JsonPropertyName ( "leverage" ) ]
41- public double Leverage { get ; set ; }
41+ public int Leverage { get ; set ; }
4242
4343 [ JsonPropertyName ( "verificationRequired" ) ]
44- public bool VerificationRequired { get ; set ; }
44+ public bool IsVerificationRequired { get ; set ; }
4545
4646 [ JsonPropertyName ( "tradingAccountAutoCreation" ) ]
47- public bool TradingAccountAutoCreation { get ; set ; }
47+ public bool IsTradingAccountAutoCreation { get ; set ; }
4848
4949 [ JsonPropertyName ( "groupName" ) ]
5050 public string GroupName { get ; set ; }
0 commit comments