mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 08:01:16 +00:00
10 lines
207 B
Go
10 lines
207 B
Go
package models
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type JobEventHistoryIDUpdate struct {
|
|
UserID uuid.UUID `json:"user_id"`
|
|
EmailID uuid.UUID `json:"email_id"`
|
|
HistoryID uint64 `json:"history_id"`
|
|
}
|