Skip to content

Instantly share code, notes, and snippets.

@lubiepomaranczki
Created February 17, 2019 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lubiepomaranczki/b0f125612a367052df97fb5d37ae0361 to your computer and use it in GitHub Desktop.
Save lubiepomaranczki/b0f125612a367052df97fb5d37ae0361 to your computer and use it in GitHub Desktop.
SectionItem from SectionedCollectionView
public class SectionItem
{
public SectionItem(string headerText, IList<Book> collection)
{
HeaderText = headerText;
Collection = collection;
}
public string HeaderText { get; set; }
public IList<Book> Collection { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment