mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
// ==========================================================================
|
|
// PlanDto.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
namespace Squidex.Controllers.Api.Plans.Models
|
|
{
|
|
public sealed class PlanDto
|
|
{
|
|
/// <summary>
|
|
/// The id of the plan.
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// The name of the plan.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// The monthly costs of the plan.
|
|
/// </summary>
|
|
public string Costs { get; set; }
|
|
|
|
/// <summary>
|
|
/// The maximum number of API calls.
|
|
/// </summary>
|
|
public long MaxApiCalls { get; set; }
|
|
|
|
/// <summary>
|
|
/// The maximum allowed asset size.
|
|
/// </summary>
|
|
public long MaxAssetSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// The maximum number of contributors.
|
|
/// </summary>
|
|
public int MaxContributors { get; set; }
|
|
}
|
|
}
|
|
|