2022-01-17 20:23:04 +00:00
|
|
|
package types
|
|
|
|
|
|
|
|
type Album struct {
|
2022-01-24 01:59:29 +00:00
|
|
|
Id string
|
|
|
|
Title string
|
|
|
|
Views int64
|
|
|
|
Upvotes int64
|
|
|
|
Downvotes int64
|
|
|
|
SharedWithCommunity bool
|
|
|
|
CreatedAt string
|
|
|
|
UpdatedAt string
|
|
|
|
Comments int64
|
2022-02-02 15:46:47 +00:00
|
|
|
User User
|
2022-01-24 01:59:29 +00:00
|
|
|
Media []Media
|
2022-02-21 17:14:00 +00:00
|
|
|
Tags []Tag
|
2022-01-17 20:23:04 +00:00
|
|
|
}
|