using GUI.ViewModels; using System.Windows; namespace GUI.Views; /// /// Interaction logic for LogView.xaml /// public partial class LogView : Window { public LogView(LoggingCollection loggingCollection) { InitializeComponent(); DataContext = new LogViewModel(loggingCollection); } }