From 23eb27cf7f7c08523a688cd5414e98d2ddc0f781 Mon Sep 17 00:00:00 2001 From: Peter Bastiani Date: Wed, 4 Mar 2020 10:19:10 +0100 Subject: [PATCH] AW-981 Add Alert enum. --- projects/common/src/fm/enumerations/alert.enum.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 projects/common/src/fm/enumerations/alert.enum.ts diff --git a/projects/common/src/fm/enumerations/alert.enum.ts b/projects/common/src/fm/enumerations/alert.enum.ts new file mode 100644 index 0000000..394efd0 --- /dev/null +++ b/projects/common/src/fm/enumerations/alert.enum.ts @@ -0,0 +1,5 @@ +export enum Alert { + Danger = "danger", + Warning = "warning", + Success = "success" + } \ No newline at end of file