rimgo/types/Album.go
2022-01-20 16:09:57 -05:00

15 lines
212 B
Go

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