Files
frontend-hideyoshi.com/src/app/shared/model/httpError/httpError.model.ts

7 lines
143 B
TypeScript

export interface HttpError {
title: string;
status: number;
details: string;
developerMessage: string;
timestamp: string;
}