mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
18 lines
401 B
C#
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);
|
|
}
|
|
}
|
|
}
|