CodeMerger/Views/LogWindow.xaml.cs

14 lines
246 B
C#
Raw Normal View History

2025-02-23 07:10:00 -03:00
using System.Windows;
using CodeMerger.ViewModels;
namespace CodeMerger.Views;
public partial class LogWindow : Window
{
public LogWindow(LogViewModel viewModel)
{
InitializeComponent();
DataContext = viewModel;
}
}