mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 11:24:02 +08:00
22 lines
432 B
C#
22 lines
432 B
C#
namespace SourceGit.Git {
|
|
|
|
/// <summary>
|
|
/// Decorator type.
|
|
/// </summary>
|
|
public enum DecoratorType {
|
|
None,
|
|
CurrentBranchHead,
|
|
LocalBranchHead,
|
|
RemoteBranchHead,
|
|
Tag,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Commit decorator.
|
|
/// </summary>
|
|
public class Decorator {
|
|
public DecoratorType Type { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|