mirror of
https://codeberg.org/video-prize-ranch/rimgo.git
synced 2025-06-28 07:58:23 +00:00
16 lines
232 B
Go
16 lines
232 B
Go
package types
|
|
|
|
type Comment struct {
|
|
Comments []Comment
|
|
User User
|
|
Id string
|
|
Comment string
|
|
Upvotes int64
|
|
Downvotes int64
|
|
Platform string
|
|
CreatedAt string
|
|
RelTime string
|
|
UpdatedAt string
|
|
DeletedAt string
|
|
}
|