14 lines
246 B
C#
14 lines
246 B
C#
|
using System.Windows;
|
||
|
using CodeMerger.ViewModels;
|
||
|
|
||
|
namespace CodeMerger.Views;
|
||
|
|
||
|
public partial class LogWindow : Window
|
||
|
{
|
||
|
public LogWindow(LogViewModel viewModel)
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
DataContext = viewModel;
|
||
|
}
|
||
|
}
|