Added vorgang.service.ts and accompanying spec
[examples/angular-tour-of-heroes] / src / app / vorgang.ts
1 export enum Type {
2   SUCCESS = 'SUCCESS',
3   FAILURE = 'FAILURE'
4 }
5
6 export interface Vorgang {
7   type?: Type;
8   vbId: string;
9   vorgangId: string;
10   zustand: any;
11 }