1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-06-02 19:48:21 +00:00

14 lines
222 B
Go
Raw Normal View History

package model
import "time"
type FailedEvent struct {
Database string
ViewName string
FailedSequence uint64
FailureCount uint64
ErrMsg string
InstanceID string
LastFailed time.Time
}