Created
February 17, 2019 18:20
-
-
Save lubiepomaranczki/b0f125612a367052df97fb5d37ae0361 to your computer and use it in GitHub Desktop.
SectionItem from SectionedCollectionView
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
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