13 lines
305 B
C#
13 lines
305 B
C#
|
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
|
||
|
|
||
|
namespace auto_creamapi.Views
|
||
|
{
|
||
|
[MvxContentPresentation(WindowIdentifier = nameof(MainView), StackNavigation = false)]
|
||
|
public partial class MainView
|
||
|
{
|
||
|
public MainView()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
}
|
||
|
}
|