8 lines
231 B
Go
8 lines
231 B
Go
package models
|
|
|
|
type Activity struct {
|
|
Id string `gorm:"primarykey"`
|
|
Type string `gorm:"type:activitystreams_activity_type"`
|
|
ObjectId string
|
|
ObjectType uint32 // Target type: ActivitystreamsActivityTargetType
|
|
}
|