GoldbergGUI/GoldbergGUI.WPF/Views/SearchResultView.xaml.cs
2021-01-19 20:37:13 +01:00

14 lines
No EOL
353 B
C#

using MvvmCross.Platforms.Wpf.Presenters.Attributes;
// ReSharper disable UnusedType.Global
namespace GoldbergGUI.WPF.Views
{
[MvxWindowPresentation(Identifier = nameof(SearchResultView), Modal = false)]
public partial class SearchResultView
{
public SearchResultView()
{
InitializeComponent();
}
}
}