13 lines
278 B
Go
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
|
|
}
|