Passport/pkg/internal/models/profiles.go

17 lines
336 B
Go
Raw Normal View History

2024-01-28 08:17:38 +00:00
package models
2024-04-02 12:23:25 +00:00
import (
"time"
)
2024-01-28 08:17:38 +00:00
type AccountProfile struct {
BaseModel
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
Experience uint64 `json:"experience"`
2024-06-26 12:28:12 +00:00
LastSeenAt *time.Time `json:"last_seen_at"`
2024-01-28 08:17:38 +00:00
Birthday *time.Time `json:"birthday"`
AccountID uint `json:"account_id"`
}