10 lines
155 B
Go
10 lines
155 B
Go
package storage
|
|
|
|
import "time"
|
|
|
|
type FollowRequest struct {
|
|
ID uint `gorm:"primarykey"`
|
|
CreatedAt time.Time
|
|
FromId string
|
|
ToId string
|
|
}
|