Headless CMS and Content Managment Hub
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.
 
 
 
 
 

27 lines
880 B

// ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschraenkt)
// All rights reserved. Licensed under the MIT license.
// ==========================================================================
using NetTopologySuite.Geometries;
using Squidex.Infrastructure;
namespace Squidex.Domain.Apps.Entities.Contents.Text
{
public sealed class UpsertIndexEntry : IndexCommand
{
public Dictionary<string, Geometry>? GeoObjects { get; set; }
public Dictionary<string, string>? Texts { get; set; }
public bool ServeAll { get; set; }
public bool ServePublished { get; set; }
public DomainId ContentId { get; set; }
public bool IsNew { get; set; }
}
}