// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using System.Collections.Generic; namespace Squidex.Domain.Apps.Core.Schemas { public interface IArrayField : IField { IReadOnlyList Fields { get; } IReadOnlyDictionary FieldsById { get; } IReadOnlyDictionary FieldsByName { get; } } }