2024-09-01 08:38:09 +00:00
|
|
|
package models
|
|
|
|
|
2024-11-27 13:57:10 +00:00
|
|
|
type CheckInRecord struct {
|
2024-09-01 08:38:09 +00:00
|
|
|
BaseModel
|
|
|
|
|
|
|
|
ResultTier int `json:"result_tier"`
|
|
|
|
ResultExperience int `json:"result_experience"`
|
|
|
|
Account Account `json:"account"`
|
|
|
|
AccountID uint `json:"account_id"`
|
|
|
|
}
|