public class FlyoutItemPage { public FlyoutItemPage(int pageID, string title, Type targetPage, string iconSource) { this.PageID = pageID; this.TargetPage = targetPage; this.Title = title; this.IconSource = iconSource; } public int PageID { get; set; } public string Title { get; set; } public Type TargetPage { get; set; } public string IconSource { get; set; } }