rimgo/types/Album.go

16 lines
330 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
2022-02-02 15:46:47 +00:00
User User
2022-01-24 01:59:29 +00:00
Media []Media
2022-01-17 20:23:04 +00:00
}