Interactive/pkg/internal/models/accounts.go

15 lines
398 B
Go
Raw Normal View History

2024-02-01 15:26:17 +00:00
package models
import "git.solsynth.dev/hydrogen/dealer/pkg/hyper"
2024-02-01 15:26:17 +00:00
type Account struct {
hyper.BaseUser
2024-02-01 15:26:17 +00:00
2024-09-16 16:12:09 +00:00
Posts []Post `json:"posts" gorm:"foreignKey:AuthorID"`
Reactions []Reaction `json:"reactions"`
Subscriptions []Subscription `json:"subscriptions" gorm:"foreginKey:FollowerID"`
2024-07-23 08:12:19 +00:00
TotalUpvote int `json:"total_upvote"`
TotalDownvote int `json:"total_downvote"`
2024-02-01 15:26:17 +00:00
}