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.
38 lines
1.1 KiB
38 lines
1.1 KiB
// ==========================================================================
|
|
// JsonAppEntity.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using Newtonsoft.Json;
|
|
using Squidex.Domain.Apps.Core.Apps;
|
|
using Squidex.Domain.Apps.Read.Apps;
|
|
|
|
namespace Squidex.Domain.Apps.Read.State.Grains
|
|
{
|
|
public sealed class JsonAppEntity : JsonEntity<JsonAppEntity>, IAppEntity
|
|
{
|
|
[JsonProperty]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty]
|
|
public string PlanId { get; set; }
|
|
|
|
[JsonProperty]
|
|
public string Etag { get; set; }
|
|
|
|
[JsonProperty]
|
|
public string PlanOwner { get; set; }
|
|
|
|
[JsonProperty]
|
|
public AppClients Clients { get; set; } = AppClients.Empty;
|
|
|
|
[JsonProperty]
|
|
public AppContributors Contributors { get; set; } = AppContributors.Empty;
|
|
|
|
[JsonProperty]
|
|
public LanguagesConfig LanguagesConfig { get; set; }
|
|
}
|
|
}
|
|
|