Add delete query

This commit is contained in:
Fred Boniface 2023-07-27 20:14:57 +01:00
parent 9a574276d5
commit d15ddc5563
1 changed files with 6 additions and 0 deletions

View File

@ -27,3 +27,9 @@ type Service struct {
DaysRun []string `json:"daysRun,omitempty"`
Stops []Stop `json:"stops,omitempty"`
}
type DeleteQuery struct {
TrainUid string `json:"trainUid"`
ScheduleStartDate string `json:"scheduleStartDate"`
StpIndicator string `json:"stpIndicator"`
}