sourcegit/src/Models/Decorator.cs

19 lines
365 B
C#
Raw Normal View History

namespace SourceGit.Models
{
public enum DecoratorType
{
2020-07-03 00:24:31 -07:00
None,
CurrentBranchHead,
LocalBranchHead,
CurrentCommitHead,
2020-07-03 00:24:31 -07:00
RemoteBranchHead,
Tag,
}
public class Decorator
{
2021-04-29 05:05:55 -07:00
public DecoratorType Type { get; set; } = DecoratorType.None;
public string Name { get; set; } = "";
2020-07-03 00:24:31 -07:00
}
}