25 lines
333 B
Go
25 lines
333 B
Go
package structs
|
|
|
|
import "time"
|
|
|
|
type VerifiedUser struct {
|
|
UserId string
|
|
ChatId int
|
|
CreatedAt time.Time
|
|
}
|
|
|
|
type UserIdParam struct {
|
|
UserId string
|
|
}
|
|
|
|
// swagger:model VerifyCodeResponse
|
|
type VerifyCodeResponse struct {
|
|
Code string
|
|
}
|
|
|
|
type TempVerifyCode struct {
|
|
UserId string
|
|
Code string
|
|
ExpiredAt time.Time
|
|
}
|