blob: 27a4ce1222d47c27e67e2b279ccdc46abd489491 [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;
}
}