Advertisement
commodore73

Markdown Block Model

Jul 23rd, 2020
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1. namespace Root.Core.Models.GlobalFields.Elements
  2. {
  3.     using Core.Models.Fields;
  4.  
  5.     public class MarkdownElement : ElementBase // TOO MANY THINGS NAMED MARKUP/markdown
  6.     {
  7.         public override ElementType ElementType { get; set; } = ElementType.Markdown;
  8.        
  9.         public override string PartialView { get; set; } = "__markdown";
  10.         public MarkdownField Markdown { get; set; }
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement