13 lines
384 B
Go
13 lines
384 B
Go
package graphModels
|
|
|
|
type AnthroveUserRelationship struct {
|
|
UserID string `json:"user_id"`
|
|
Username string `json:"username"`
|
|
ScrapeTimeInterval string `json:"scrape_time_interval"`
|
|
Source AnthroveSource `json:"source"`
|
|
}
|
|
type AnthrovePostRelationship struct {
|
|
PostID string `json:"post_id"`
|
|
Url string `json:"url"`
|
|
}
|