auto-creamapi-2/auto-creamapi/MainWindow.xaml.cs

13 lines
288 B
C#
Raw Normal View History

using MvvmCross.Platforms.Wpf.Presenters.Attributes;
namespace auto_creamapi
{
[MvxWindowPresentation(Identifier = nameof(MainWindow), Modal = false)]
public partial class MainWindow
{
public MainWindow()
{
InitializeComponent();
}
}
}