wabbajack/Wabbajack.Lib/WebAutomation/WebAutomationWindow.xaml.cs
2019-11-21 15:25:56 +01:00

18 lines
401 B
C#

using System.Windows;
using Wabbajack.Lib.WebAutomation;
namespace Wabbajack
{
/// <summary>
/// Interaction logic for WebAutomationWindow.xaml
/// </summary>
public partial class WebAutomationWindow : Window
{
public WebAutomationWindow()
{
InitializeComponent();
DataContext = new WebAutomationWindowViewModel(this);
}
}
}