blob: c7f790dac7d8b57f6a5c1f0ff1ceecb9a706f2ea [file] [log] [blame]
export class ListItem {
id: number;
itemName: string;
}
export class MyException {
status: number;
body: any;
constructor(status: number, body: any) {
this.status = status;
this.body = body;
}
}