14 lines
268 B
Go
14 lines
268 B
Go
package platform
|
|
|
|
import (
|
|
"github.com/Gleipnir-Technology/nidus-sync/notification"
|
|
)
|
|
|
|
type User struct {
|
|
DisplayName string
|
|
Initials string
|
|
Notifications []notification.Notification
|
|
Organization Organization
|
|
Role string
|
|
Username string
|
|
}
|