backend/src/models/responses/IResponse.ts
2021-01-29 16:49:19 +01:00

14 lines
362 B
TypeScript

import { ResponseObjectType } from '../enums/ResponseObjectType';
/**
* Defines the repsonse interface.
* This forces all response classes to implement the interfaces properties.
*/
export interface IResponse {
/**
* The responseType.
* This contains the type of class/entity this response contains.
*/
responseType: ResponseObjectType;
}