JSON output from RTE - review changes (#14139)

This commit is contained in:
Kenn Jacobsen
2023-04-21 11:42:49 +02:00
committed by GitHub
parent c06e89af64
commit ced4f84dfe
5 changed files with 12 additions and 13 deletions

View File

@@ -1,20 +0,0 @@
namespace Umbraco.Cms.Infrastructure.Models.DeliveryApi;
public class RichTextElement
{
public RichTextElement(string tag, string text, Dictionary<string, object> attributes, IEnumerable<RichTextElement> elements)
{
Tag = tag;
Text = text;
Attributes = attributes;
Elements = elements;
}
public string Tag { get; }
public string Text { get; }
public Dictionary<string, object> Attributes { get; }
public IEnumerable<RichTextElement> Elements { get; }
}