Created
June 25, 2015 22:10
-
-
Save micklaw/474a03e346b9220de352 to your computer and use it in GitHub Desktop.
Grid POCO
This file contains hidden or 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
public class TextPage : Page | |
{ | |
public TextPage(IPublishedContent content) : base(content) | |
{ | |
} | |
public string Title { get; set; } | |
public HtmlString Body { get; set; } | |
[GridResolver] | |
public GridModel Grid { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment