rimgo/types/Album.go

14 lines
195 B
Go
Raw Normal View History

2022-01-17 20:23:04 +00:00
package types
type Album struct {
Id string
Title string
Views int64
Upvotes int64
Downvotes int64
CreatedAt string
UpdatedAt string
2022-01-18 23:05:06 +00:00
Comments int64
2022-01-17 22:11:33 +00:00
Media []Media
2022-01-17 20:23:04 +00:00
}