All checks were successful
Deploy Smart Search Backend Test / deploy (push) Successful in 1m36s
14 lines
212 B
Go
14 lines
212 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type InviteCode struct {
|
|
ID int
|
|
UserID int
|
|
Code int64
|
|
CanBeUsedCount int
|
|
IsActive bool
|
|
CreatedAt time.Time
|
|
ExpiresAt time.Time
|
|
}
|