linstrom/storage/accountRelations.go

12 lines
138 B
Go

package storage
import (
"gorm.io/gorm"
)
type AccountRelation struct {
gorm.Model
FromId string
ToId string
Accepted bool
}