rimgo/types/Album.go
2022-02-21 12:14:00 -05:00

17 lines
349 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
Tags []Tag
}