mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 16:01:16 +00:00
10 lines
219 B
Go
10 lines
219 B
Go
package models
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type EventWorkerEmailValidation struct {
|
|
UserID uuid.UUID `json:"user_id"`
|
|
ProcessID uuid.UUID `json:"process_id"`
|
|
Credentials *SmtpImap `json:"credentials"`
|
|
}
|