Files
rimgo/types/Album.go
video-prize-ranch 6e5b0ee127 Add user to albums
2022-02-02 10:46:47 -05:00

16 lines
330 B
Go

package types
type Album struct {
Id string
Title string
Views int64
Upvotes int64
Downvotes int64
SharedWithCommunity bool
CreatedAt string
UpdatedAt string
Comments int64
User User
Media []Media
}