datasurvey/src/main/webapp/app/shared/alert/alert-error.model.ts

4 lines
134 B
TypeScript
Raw Normal View History

2021-07-03 21:48:27 +00:00
export class AlertError {
constructor(public message: string, public key?: string, public params?: { [key: string]: unknown }) {}
}