Skip to content

Commit 5f2f325

Browse files
committed
Merge pull request betfair#11 from efcdom/patch-1
Correcting the type of IfWin and IfLose, thanks @efcdom.
2 parents 75c6689 + 1eeb1e9 commit 5f2f325

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cSharp/Api-ng-sample-code/Api-ng-sample-code/TO/RunnerProfitAndLost.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ public class RunnerProfitAndLoss
1212
public long SelectionId { get; set; }
1313

1414
[JsonProperty(PropertyName = "ifWin")]
15-
public long IfWin { get; set; }
15+
public double IfWin { get; set; }
1616

1717
[JsonProperty(PropertyName = "ifLose")]
18-
public long IfLose { get; set; }
18+
public double IfLose { get; set; }
1919

2020
public override string ToString()
2121
{

0 commit comments

Comments
 (0)