mirror of
https://github.com/Dvorinka/excalidraw-full.git
synced 2026-06-03 22:02:57 +00:00
17 lines
418 B
Go
17 lines
418 B
Go
package core
|
|
|
|
import "time"
|
|
|
|
type (
|
|
User struct {
|
|
ID uint `json:"id" gorm:"primarykey"`
|
|
Subject string `json:"subject" gorm:"uniqueIndex"`
|
|
Login string `json:"login" gorm:"uniqueIndex"`
|
|
Email string `json:"email"`
|
|
AvatarURL string `json:"avatarUrl"`
|
|
Name string `json:"name"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|
|
)
|