Fix comments

This commit is contained in:
video-prize-ranch
2022-01-23 20:59:29 -05:00
parent b462c10197
commit 431828e256
4 changed files with 26 additions and 25 deletions

View File

@@ -1,14 +1,14 @@
package types
type Album struct {
Id string
Title string
Views int64
Upvotes int64
Downvotes int64
Privacy string
CreatedAt string
UpdatedAt string
Comments int64
Media []Media
Id string
Title string
Views int64
Upvotes int64
Downvotes int64
SharedWithCommunity bool
CreatedAt string
UpdatedAt string
Comments int64
Media []Media
}