using System.Collections.Generic; using Umbraco.Core.Models.PublishedContent; namespace Umbraco.Core.Models.Blocks { /// /// The base class for any strongly typed model for a Block editor implementation /// public abstract class BlockEditorModel { /// /// The data items of the Block List editor /// public IEnumerable Data { get; } } }