From 38f69c04e34e612ebe850c127150290d69ccb204 Mon Sep 17 00:00:00 2001 From: mroloux Date: Thu, 4 Jul 2019 10:40:28 +0200 Subject: [PATCH] Fixed bug in SummmaryForAllMonths() --- SeatsioDotNet/SeatsioDotNet.csproj | 2 +- SeatsioDotNet/UsageReports/UsageMonth.cs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/SeatsioDotNet/SeatsioDotNet.csproj b/SeatsioDotNet/SeatsioDotNet.csproj index 60cbf24..de6a3e7 100644 --- a/SeatsioDotNet/SeatsioDotNet.csproj +++ b/SeatsioDotNet/SeatsioDotNet.csproj @@ -2,7 +2,7 @@ Library true - 63 + 64 mroloux;bverbeken Official Seats.io .NET API client Official Seats.io .NET API client diff --git a/SeatsioDotNet/UsageReports/UsageMonth.cs b/SeatsioDotNet/UsageReports/UsageMonth.cs index c1701c1..1d9d9f1 100644 --- a/SeatsioDotNet/UsageReports/UsageMonth.cs +++ b/SeatsioDotNet/UsageReports/UsageMonth.cs @@ -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;