mirror of
https://codeberg.org/video-prize-ranch/rimgo.git
synced 2025-06-27 23:48:23 +00:00
15 lines
312 B
Go
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
|
|
}
|