// ==========================================================================
// ReorderFieldsDto.cs
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex Group
// All rights reserved.
// ==========================================================================
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Squidex.Areas.Api.Controllers.Schemas.Models
{
public sealed class ReorderFieldsDto
{
///
/// The field ids in the target order.
///
[Required]
public List FieldIds { get; set; }
}
}