import { BaseResponse } from "./base-response.model";

export class ErrorResponse extends BaseResponse<null> {
    error: string;
}
