Adds RTE and stylesheet services
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Umbraco.Web.Models.ContentEditing
|
||||
{
|
||||
[DataContract(Name = "richtexteditorplugin", Namespace = "")]
|
||||
public class RichTextEditorPlugin
|
||||
{
|
||||
[DataMember(Name = "name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
[DataMember(Name = "useOnFrontend")]
|
||||
public bool UseOnFrontend { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user