Advertisement
commodore73

Example base class for Block Models

Jul 23rd, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. namespace Root.Core.Models.GlobalFields.Elements
  2. {
  3.     using Root.Core.Models.Fields;
  4.  
  5.     public class ElementBase : ModularBlockBase<ElementBase, ElementType>
  6.     {
  7.         public virtual ElementType ElementType { get; set; }
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement