2021-01-09 22:11:49 +01:00
|
|
|
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
|
|
|
|
|
2021-01-19 20:37:13 +01:00
|
|
|
// ReSharper disable UnusedType.Global
|
2021-01-09 22:11:49 +01:00
|
|
|
namespace GoldbergGUI.WPF.Views
|
|
|
|
{
|
|
|
|
[MvxWindowPresentation(Identifier = nameof(SearchResultView), Modal = false)]
|
|
|
|
public partial class SearchResultView
|
|
|
|
{
|
|
|
|
public SearchResultView()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|