aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/error-msg/error-msg.model.ts
blob: 0cdb7429017ba508c6e7c2bd0e10f54ffe7b3b22 (plain)
1
2
3
4
5
6
7
8
9
10
11
export class ErrorMsgObject {
  title: string;
  subtitle: string;
  description: string;

  constructor(title: string, subtitle: string, description: string) {
    this.title = title;
    this.subtitle = subtitle;
    this.description = description;
  }
}