rimgo/types/Album.go
video-prize-ranch 4a1309e0dc
Comments
2022-01-18 18:05:06 -05:00

14 lines
195 B
Go

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