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"`
|
|
|
|
Birthday *time.Time `json:"birthday"`
|
|
|
|
AccountID uint `json:"account_id"`
|
|
|
|
}
|