summaryrefslogtreecommitdiffstats
path: root/pkg/commands/stash_entry.go
blob: 3886fd4c9a423c856c4c7372d4bf6a640e18f83c (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() []string {
	return []string{s.DisplayString}
}