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