mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
10 lines
158 B
Go
10 lines
158 B
Go
|
package model
|
||
|
|
||
|
type FailedEvent struct {
|
||
|
Database string
|
||
|
ViewName string
|
||
|
FailedSequence uint64
|
||
|
FailureCount uint64
|
||
|
ErrMsg string
|
||
|
}
|