linstrom/storage/accountRelations.go

13 lines
138 B
Go
Raw Normal View History

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