linstrom/storage-new/models/UserRelation.go
mstar 8d4ba2ecae
Some checks are pending
/ test (push) Waiting to run
More work on defining the new data structure
2025-03-26 17:14:42 +01:00

9 lines
180 B
Go

package models
type UserRelation struct {
User User
UserId string
TargetUser User
TargetUserId string
Relation RelationType `gorm:"type:relation_type"`
}