Editor/git/models/BranchType.cs
namespace Sandbox.git.models;

/// <summary>
/// Type of branch. Values are used to sort (local before remote).
/// </summary>
public enum BranchType {
	Local = 0,
	Remote = 1
}