Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace Root.Core.Models.GlobalFields.Elements
- {
- using Core.Models.Fields;
- public class MarkdownElement : ElementBase // TOO MANY THINGS NAMED MARKUP/markdown
- {
- public override ElementType ElementType { get; set; } = ElementType.Markdown;
- public override string PartialView { get; set; } = "__markdown";
- public MarkdownField Markdown { get; set; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement