13 lines
138 B
Go
13 lines
138 B
Go
|
package storage
|
||
|
|
||
|
import (
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
type AccountRelation struct {
|
||
|
gorm.Model
|
||
|
FromId string
|
||
|
ToId string
|
||
|
Accepted bool
|
||
|
}
|