idfm-api/types/impactedSection.go

10 lines
221 B
Go
Raw Normal View History

2023-07-14 10:23:33 +00:00
package types
// An ImpactedSection records the impact to a section
type ImpactedSection struct {
// The start of the disruption, spatially
From Container `json:"from"`
// Until this point
To Container `json:"to"`
}