Adding checkout commit menu and dialog

This commit is contained in:
Filipe Ramalho 2024-05-25 15:11:24 -03:00
parent b0c00340a8
commit 8aa1690cde
7 changed files with 181 additions and 0 deletions

View file

@ -0,0 +1,13 @@
using Avalonia.Controls;
namespace SourceGit.Views
{
public partial class CheckoutCommit : UserControl
{
public bool HasLocalChanges;
public CheckoutCommit()
{
InitializeComponent();
}
}
}