12 lines
287 B
C#
12 lines
287 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace Umbraco.Cms.Core.Models.ContentEditing
|
|
{
|
|
[DataContract(Name = "richtexteditorplugin", Namespace = "")]
|
|
public class RichTextEditorPlugin
|
|
{
|
|
[DataMember(Name = "name")]
|
|
public string? Name { get; set; }
|
|
}
|
|
}
|