namespace LibGit2Sharp { /// /// git_remote_completion types. /// public enum RemoteCompletionType { /// /// Download. /// Download = 0, /* GIT_REMOTE_COMPLETION_DOWNLOAD */ /// /// Indexing. /// Indexing, /* GIT_REMOTE_COMPLETION_INDEXING */ /// /// Error. /// Error, /* GIT_REMOTE_COMPLETION_ERROR */ } }