Last active
May 24, 2016 13:58
-
-
Save katstojanovski/f2bfc04a91a6b738db0522fd1225df00 to your computer and use it in GitHub Desktop.
Article ViewModel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ContentModel("article", true)] | |
public class Article : ViewModelBase, IRenderableViewModel | |
{ | |
[TextField] | |
public string Heading { get; set; } | |
[RenderData] | |
public IRenderData RenderData { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment