7 lines
No EOL
106 B
TypeScript
7 lines
No EOL
106 B
TypeScript
export class ApiError {
|
|
detail: string;
|
|
|
|
constructor(detail: string) {
|
|
this.detail = detail;
|
|
}
|
|
} |