mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 19:19:19 +00:00
14 lines
227 B
Go
14 lines
227 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type View struct {
|
|
Database string
|
|
ViewName string
|
|
CurrentSequence uint64
|
|
EventTimestamp time.Time
|
|
LastSuccessfulSpoolerRun time.Time
|
|
}
|