Advertisement
commodore73

Block Model for Code Link

Jul 23rd, 2020
118
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 CodeLinkElement : ElementBase
  4.     {
  5.         public override ElementType ElementType { get; set; } = ElementType.CodeLink;
  6.         public override string PartialView { get; set; } = "__codelink";
  7.         public string Url { get; set; }
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement