Skip to content

Commit

Permalink
Fixed bug in SummmaryForAllMonths()
Browse files Browse the repository at this point in the history
  • Loading branch information
mroloux committed Jul 4, 2019
1 parent 44e2df4 commit 38f69c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
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>63</Version>
<Version>64</Version>
<Authors>mroloux;bverbeken</Authors>
<Title>Official Seats.io .NET API client</Title>
<Description>Official Seats.io .NET API client</Description>
Expand Down
4 changes: 4 additions & 0 deletions SeatsioDotNet/UsageReports/UsageMonth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ public class UsageMonth
public int Year { get; set; }
public int Month { get; set; }

public UsageMonth()
{
}

public UsageMonth(int year, int month)
{
Year = year;
Expand Down

0 comments on commit 38f69c0

Please sign in to comment.