Advertisement
commodore73

Block Model for Code Block

Jul 23rd, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. namespace Root.Core.Models.GlobalFields.Elements
  2. {
  3.     public class CodeBlockElement : ElementBase
  4.     {
  5.         public override ElementType ElementType { get; set; } = ElementType.CodeBlock;
  6.         public override string PartialView { get; set; } = "__codeblock";
  7.         public string Code { get; set; }
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement