a better layout, + start of app state imple

This commit is contained in:
Paul Schneider 2016-10-15 16:09:55 +02:00
commit 90155fe8da
14 changed files with 94 additions and 62 deletions

View file

@ -0,0 +1,10 @@
namespace BookAStar.Model.UI
{
internal class PageState
{
internal int Position { get; set; }
internal object BindingContext { get; set; }
internal string PageType { get; set; }
}
}

View file

@ -1,4 +1,5 @@
using BookAStar.Helpers;
using BookAStar.Data;
using BookAStar.Helpers;
using BookAStar.Model.Interfaces;
using System.Collections.Generic;
using System.Linq;