15 lines
347 B
C#
15 lines
347 B
C#
using System.Windows;
|
|
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
|
|
using MvvmCross.Platforms.Wpf.Views;
|
|
|
|
namespace auto_creamapi
|
|
{
|
|
[MvxWindowPresentation(Identifier = nameof(MainWindow), Modal = false)]
|
|
public partial class MainWindow
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |