summaryrefslogtreecommitdiffstats
path: root/pkg/commands/stash_entry.go
blob: 94e4417d4f2a0dbd95828770d1729550d4b91429 (plain)
1
2
3
4
5
6
7
package commands

// StashEntry : A git stash entry
type StashEntry struct {
	Index int
	Name  string
}