mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
13 lines
246 B
C#
13 lines
246 B
C#
using Avalonia.Controls;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class CheckoutCommit : UserControl
|
|
{
|
|
public bool HasLocalChanges;
|
|
public CheckoutCommit()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|