Added vorgang.service.ts and accompanying spec
[examples/angular-tour-of-heroes] / src / app / vorgang.ts
diff --git a/src/app/vorgang.ts b/src/app/vorgang.ts
new file mode 100644 (file)
index 0000000..ab6095f
--- /dev/null
@@ -0,0 +1,11 @@
+export enum Type {
+  SUCCESS = 'SUCCESS',
+  FAILURE = 'FAILURE'
+}
+
+export interface Vorgang {
+  type?: Type;
+  vbId: string;
+  vorgangId: string;
+  zustand: any;
+}