Advertisement
commodore73

Markup Group Model

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