diff --git a/src/utils/enum/enum-separators.ts b/src/utils/enum/enum-separators.ts
new file mode 100644
index 0000000..a86e8ae
--- /dev/null
+++ b/src/utils/enum/enum-separators.ts
@@ -0,0 +1,9 @@
+/**
+ * An array of characters that can be used to separate enum values in a string.
+ */
+export const ENUM_SEPARATORS = [",", "|"]  as const;
+
+/**
+ * The default separator used when converting an enum value to a string.
+ */
+export const DEFAULT_ENUM_SEPARATOR = ENUM_SEPARATORS[0];