15 lines
276 B
Go
15 lines
276 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import "gitlab.com/unboundsoftware/eventsourced/eventsourced"
|
||
|
|
|
||
|
|
type SubGraphUpdated struct {
|
||
|
|
eventsourced.EventAggregateId
|
||
|
|
eventsourced.EventTime
|
||
|
|
Ref string
|
||
|
|
Service string
|
||
|
|
Url *string
|
||
|
|
WSUrl *string
|
||
|
|
Sdl string
|
||
|
|
Initiator string
|
||
|
|
}
|