14 lines
353 B
C#
14 lines
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();
|
|
}
|
|
}
|
|
} |