mirror of
https://codeberg.org/video-prize-ranch/rimgo.git
synced 2025-06-28 07:58:23 +00:00
14 lines
195 B
Go
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
|
|
}
|