mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
14 lines
339 B
C#
14 lines
339 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace SourceGit.Views {
|
|
public partial class AssumeUnchangedManager : Window {
|
|
public AssumeUnchangedManager() {
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void CloseWindow(object sender, RoutedEventArgs e) {
|
|
Close();
|
|
}
|
|
}
|
|
}
|