Files
Umbraco-CMS/src/Umbraco.Core/PropertyEditors/IRichTextEditorIntermediateValue.cs
2024-02-07 02:32:14 +01:00

14 lines
339 B
C#

using Umbraco.Cms.Core.Models.Blocks;
namespace Umbraco.Cms.Core.PropertyEditors;
/// <summary>
/// Models Intermediate Value for Rich Text Editors Property Value Converter.
/// </summary>
public interface IRichTextEditorIntermediateValue
{
public string Markup { get; }
public RichTextBlockModel? RichTextBlockModel { get; }
}