summaryrefslogtreecommitdiffstats
path: root/pkg/commands/stash_entry.go
blob: a47200fd43f7a96195f17b7861cbc71b0b0198d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package commands

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

// GetDisplayStrings returns the display string of branch
func (s *StashEntry) GetDisplayStrings(isFocused bool) []string {
	return []string{s.DisplayString}
}