15 lines
277 B
C#
15 lines
277 B
C#
using System.Windows;
|
|
using Explorer.Presentation.ViewModels;
|
|
|
|
namespace Explorer.App;
|
|
|
|
public partial class GitDiffWindow : Window
|
|
{
|
|
public GitDiffWindow(GitDiffViewModel vm)
|
|
{
|
|
InitializeComponent();
|
|
DataContext = vm;
|
|
Title = vm.Title;
|
|
}
|
|
}
|