rimgo/types/Album.go
video-prize-ranch 431828e256
Fix comments
2022-01-23 20:59:29 -05:00

15 lines
312 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
Media []Media
}