Skip to content

Commit

Permalink
Usage details contain workspace ID instead of subaccount ID
Browse files Browse the repository at this point in the history
  • Loading branch information
mroloux committed Dec 28, 2020
1 parent f40ff05 commit 410b242
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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>76.2.0</Version>
<Version>77.0.0</Version>
<Authors>mroloux;bverbeken</Authors>
<Title>Official Seats.io .NET API client</Title>
<Description>Official Seats.io .NET API client</Description>
Expand Down
2 changes: 1 addition & 1 deletion SeatsioDotNet/UsageReports/DetailsForMonth/UsageDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace SeatsioDotNet.UsageReports
{
public class UsageDetails
{
public UsageSubaccount Subaccount { get; set; }
public UsageWorkspace Workspace { get; set; }
public IEnumerable<UsageByChart> UsageByChart { get; set; }
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace SeatsioDotNet.UsageReports
{
public class UsageSubaccount
public class UsageWorkspace
{
public long Id { get; set; }
}
Expand Down

0 comments on commit 410b242

Please sign in to comment.