linstrom/storage/followRequests.go

11 lines
155 B
Go
Raw Normal View History

package storage
import "time"
type FollowRequest struct {
ID uint `gorm:"primarykey"`
CreatedAt time.Time
FromId string
ToId string
}