2020-12-25 10:49:51 -05:00
|
|
|
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
|
|
|
|
|
|
|
|
namespace auto_creamapi.Views
|
|
|
|
{
|
|
|
|
[MvxContentPresentation(WindowIdentifier = nameof(MainView), StackNavigation = false)]
|
2021-01-01 10:27:42 -05:00
|
|
|
// ReSharper disable once UnusedType.Global
|
2020-12-25 10:49:51 -05:00
|
|
|
public partial class MainView
|
|
|
|
{
|
|
|
|
public MainView()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|