Add wrapper type

This commit is contained in:
Fred Boniface 2023-07-20 21:15:51 +01:00
parent 5fda100222
commit a582c3495e
1 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,9 @@
package upstreamApi
type MsgData struct {
Data VstpMsg `json:"VSTPCIFMsgV1"`
}
type VstpMsg struct {
CIFMsg Schedule `json:"schedule"`
}