// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using System; using System.Collections.Generic; using Squidex.Infrastructure.Validation; namespace Squidex.Areas.Api.Controllers.Contents.Models { public sealed class ContentsIdsQueryDto { /// /// The list of ids to query. /// [LocalizedRequired] public List Ids { get; set; } } }