codeword/internal/models/user.go

18 lines
424 B
Go
Raw Normal View History

2023-12-29 11:30:20 +00:00
package models
import "time"
type User struct {
// получаем данные из другого сервиса
}
type RestoreRequest struct {
ID string // xid или ObjectID
CreatedAt time.Time
Sign string // подпись
Email string // email из запроса
UserID string // айдишник юзера, которого нашли по email
Sent bool
SentAt time.Time
}