// ==========================================================================
// PlanDto.cs
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex Group
// All rights reserved.
// ==========================================================================
namespace Squidex.Controllers.Api.Plans.Models
{
public sealed class PlanDto
{
///
/// The id of the plan.
///
public string Id { get; set; }
///
/// The name of the plan.
///
public string Name { get; set; }
///
/// The monthly costs of the plan.
///
public string Costs { get; set; }
///
/// The maximum number of API calls.
///
public long MaxApiCalls { get; set; }
///
/// The maximum allowed asset size.
///
public long MaxAssetSize { get; set; }
///
/// The maximum number of contributors.
///
public int MaxContributors { get; set; }
}
}