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