summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IPageContainer.cs
blob: 9582e5e2ca5b710945495629fd882f4596f5f28e (plain)
1
2
3
4
5
6
7
namespace Xamarin.Forms
{
	public interface IPageContainer<out T> where T : Page
	{
		T CurrentPage { get; }
	}
}