Skip to content

Commit

Permalink
Added distanceToFocalPoint to reports
Browse files Browse the repository at this point in the history
  • Loading branch information
mroloux committed Apr 26, 2021
1 parent fae0dec commit 341a34c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions SeatsioDotNet.Test/ChartReports/ChartReportsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public void ReportItemProperties()
Assert.Null(reportItem.LeftNeighbour);
Assert.Equal("A-2", reportItem.RightNeighbour);
Assert.Null(reportItem.BookAsAWhole);
Assert.NotNull(reportItem.DistanceToFocalPoint);
}

[Fact]
Expand Down
1 change: 1 addition & 0 deletions SeatsioDotNet.Test/EventReports/EventReportsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public void ReportItemProperties()
Assert.False(reportItem.IsDisabledBySocialDistancing);
Assert.Equal("channelKey1", reportItem.Channel);
Assert.Null(reportItem.BookAsAWhole);
Assert.NotNull(reportItem.DistanceToFocalPoint);
}

[Fact]
Expand Down
1 change: 1 addition & 0 deletions SeatsioDotNet/ChartReports/ChartReportItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ public class ChartReportItem
public bool? BookAsAWhole { get; set; }
public string LeftNeighbour { get; set; }
public string RightNeighbour { get; set; }
public float? DistanceToFocalPoint { get; set; }
}
}
1 change: 1 addition & 0 deletions SeatsioDotNet/EventReports/EventReportItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@ public class EventReportItem
public bool IsSelectable { get; set; }
public bool? IsDisabledBySocialDistancing { get; set; }
public string Channel { get; set; }
public float? DistanceToFocalPoint { get; set; }
}
}
2 changes: 1 addition & 1 deletion SeatsioDotNet/SeatsioDotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
<Version>81.1.0</Version>
<Version>81.2.0</Version>
<Authors>mroloux;bverbeken</Authors>
<Title>Official Seats.io .NET API client</Title>
<Description>Official Seats.io .NET API client</Description>
Expand Down

0 comments on commit 341a34c

Please sign in to comment.