rimgo/types/Album.go

15 lines
312 B
Go
Raw Normal View History

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
Media []Media
2022-01-17 20:23:04 +00:00
}