// ==========================================================================
// CurrentCallsDto.cs
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex Group
// All rights reserved.
// ==========================================================================
namespace Squidex.Areas.Api.Controllers.Statistics.Models
{
public sealed class CurrentCallsDto
{
///
/// The number of calls.
///
public long Count { get; set; }
///
/// The number of maximum allowed calls.
///
public long MaxAllowed { get; set; }
}
}