mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 06:08:16 +00:00
8 lines
160 B
Go
8 lines
160 B
Go
package models
|
|
|
|
type ExceptionModel struct {
|
|
ErrorCode string `json:"errorCode"`
|
|
Message string `json:"message"`
|
|
StatusCode int `json:"statusCode"`
|
|
}
|