Files
sonr/internal/orm/profile.go
T

14 lines
198 B
Go
Raw Normal View History

2024-07-05 22:20:13 -04:00
package orm
import "gorm.io/gorm"
type Profile struct {
gorm.Model
DID string
DisplayName string
Name string
Origin string
Controller string
Credentials []Credential
}