15 lines
271 B
TypeScript
15 lines
271 B
TypeScript
import { Exception } from "./Exception.model";
|
|
|
|
export class GenericResponse {
|
|
public notification: Exception;
|
|
data: any
|
|
|
|
constructor(
|
|
exception: Exception,
|
|
data
|
|
) {
|
|
this.notification = exception;
|
|
this.data = data;
|
|
}
|
|
}
|