summaryrefslogtreecommitdiffstats
path: root/pkg/commands/stash_entry.go
blob: a9cfd95bf3d214470a2ba74b207c177929dde890 (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 dispaly string of branch
func (s *StashEntry) GetDisplayStrings(isFocused bool) []string {
	return []string{s.DisplayString}
}