Skip to content

Instantly share code, notes, and snippets.

@micklaw
Created June 25, 2015 22:10
Show Gist options
  • Save micklaw/474a03e346b9220de352 to your computer and use it in GitHub Desktop.
Save micklaw/474a03e346b9220de352 to your computer and use it in GitHub Desktop.
Grid POCO
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