Files
Umbraco-CMS/src/Umbraco.Core/Models/Blocks/BlockEditorModel.cs

17 lines
458 B
C#
Raw Normal View History

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