rimgo/types/Album.go
2022-01-17 15:23:04 -05:00

13 lines
180 B
Go

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