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