From e2359e28a90fa11455e07ee83bb6ae1781b5e92c Mon Sep 17 00:00:00 2001 From: faris Aljohari <83524184+farisaljohari@users.noreply.github.com> Date: Fri, 28 Jun 2024 20:47:55 +0300 Subject: [PATCH] Add enum for working days in common library --- libs/common/src/constants/working-days.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 libs/common/src/constants/working-days.ts diff --git a/libs/common/src/constants/working-days.ts b/libs/common/src/constants/working-days.ts new file mode 100644 index 0000000..d870d3c --- /dev/null +++ b/libs/common/src/constants/working-days.ts @@ -0,0 +1,9 @@ +export enum WorkingDays { + Sun = 'Sun', + Mon = 'Mon', + Tue = 'Tue', + Wed = 'Wed', + Thu = 'Thu', + Fri = 'Fri', + Sat = 'Sat', +}