mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 01:41:44 +00:00
14 lines
198 B
Go
14 lines
198 B
Go
package orm
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Profile struct {
|
|
gorm.Model
|
|
DID string
|
|
DisplayName string
|
|
Name string
|
|
Origin string
|
|
Controller string
|
|
Credentials []Credential
|
|
}
|