14 lines
274 B
C#
14 lines
274 B
C#
using TodoDetails.View;
|
|
|
|
namespace TodoDetails
|
|
{
|
|
public partial class AppShell : Shell
|
|
{
|
|
public AppShell()
|
|
{
|
|
InitializeComponent();
|
|
Routing.RegisterRoute(nameof(TodoDetailsPage), typeof(TodoDetailsPage));
|
|
}
|
|
}
|
|
}
|