// ========================================================================== // 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? GeoObjects { get; set; } public Dictionary? Texts { get; set; } public bool ServeAll { get; set; } public bool ServePublished { get; set; } public DomainId ContentId { get; set; } public bool IsNew { get; set; } } }