auto-creamapi-2/auto-creamapi/MainWindow.xaml.cs
Jeddunk 73baa27245 SearchResultView and DownloadView implemented;
Ignore whitespaces and special chars when looking for games;
2020-12-28 15:27:37 +01:00

13 lines
288 B
C#

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