Passport/pkg/internal/models/profiles.go
2024-06-26 11:11:23 +08:00

16 lines
291 B
Go

package models
import (
"time"
)
type AccountProfile struct {
BaseModel
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
Experience uint64 `json:"experience"`
Birthday *time.Time `json:"birthday"`
AccountID uint `json:"account_id"`
}