github.com/lucasscarioca/music-stash@v0.0.0-20230829021135-a8b8893b12a5/internal/models/playlist.go (about)

     1  package models
     2  
     3  type Playlist struct {
     4  	Id          string // ObjectId
     5  	Title       string
     6  	Description string
     7  	CoverURL    string
     8  	Categories  []Category
     9  	Tabs        []Tab // []ObjectId
    10  	Public      bool
    11  	Views       uint64
    12  	CreatedAt   string
    13  }