filebrowser/users/bookmark.go
2019-05-21 11:39:17 +01:00

8 lines
145 B
Go

package users
// Bookmark represents a bookmark the user has set
type Bookmark struct {
Name string `json:"name"`
Path string `json:"path"`
}