mirror of https://github.com/Squidex/squidex.git
25 changed files with 128 additions and 93 deletions
@ -0,0 +1,26 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
namespace Squidex.Infrastructure.UsageTracking |
|||
{ |
|||
public sealed class ApiStatsSummary |
|||
{ |
|||
public long TotalCalls { get; } |
|||
|
|||
public long TotalBytes { get; } |
|||
|
|||
public double AverageElapsedMs { get; } |
|||
|
|||
public ApiStatsSummary(long totalCalls, double averageElapsedMs, long totalBytes) |
|||
{ |
|||
TotalCalls = totalCalls; |
|||
TotalBytes = totalBytes; |
|||
|
|||
AverageElapsedMs = averageElapsedMs; |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue