Files
DeviceBookingAPI/models/error.go
T
2022-09-26 16:40:40 -07:00

13 lines
278 B
Go

package models
// ErrorMessageResponse returns the error message response struct
type ErrorMessageResponse struct {
Response MessageError
}
// MessageError contains the inner details for the error message response
type MessageError struct {
Message string
Error string
}