Last active
May 24, 2016 13:59
-
-
Save katstojanovski/630e45c78cea1c38df1391d8c9ef72e2 to your computer and use it in GitHub Desktop.
Page 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
[PageViewModel(TemplateTitle = "Generic")] | |
public class Generic : ViewModelBase | |
{ | |
[PageTitle] | |
public string PageTitle { get; set; } | |
[TextField(IsMetadata = true)] | |
public List<string> Keywords { get; set; } | |
[ComponentPresentations] | |
public List<IRenderableViewModel> Items { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment