export default interface IError {
    code: string;
    title: string;
    detail: string;
}
