2024-09-17 00:12:09 +08:00
|
|
|
package models
|
|
|
|
|
2024-10-31 22:41:32 +08:00
|
|
|
import "git.solsynth.dev/hypernet/nexus/pkg/nex/cruda"
|
2024-09-17 00:12:09 +08:00
|
|
|
|
|
|
|
type Subscription struct {
|
2024-10-31 22:41:32 +08:00
|
|
|
cruda.BaseModel
|
2024-09-17 00:12:09 +08:00
|
|
|
|
2025-02-15 16:07:58 +08:00
|
|
|
FollowerID uint `json:"follower_id"`
|
|
|
|
AccountID *uint `json:"account_id,omitempty"`
|
|
|
|
TagID *uint `json:"tag_id,omitempty"`
|
|
|
|
CategoryID *uint `json:"category_id,omitempty"`
|
2024-09-17 00:12:09 +08:00
|
|
|
}
|