mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07: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; }
|
|||
|
}
|
|||
|
}
|