mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
10 lines
143 B
C#
10 lines
143 B
C#
|
namespace SourceGit.Models
|
|||
|
{
|
|||
|
public enum DealWithLocalChanges
|
|||
|
{
|
|||
|
StashAndReaply,
|
|||
|
Discard,
|
|||
|
DoNothing,
|
|||
|
}
|
|||
|
}
|