aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services/EntityNames.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BackEnd/Timeline/Services/EntityNames.cs')
-rw-r--r--BackEnd/Timeline/Services/EntityNames.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Services/EntityNames.cs b/BackEnd/Timeline/Services/EntityNames.cs
new file mode 100644
index 00000000..0ce1de3b
--- /dev/null
+++ b/BackEnd/Timeline/Services/EntityNames.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace Timeline.Services
+{
+ public static class EntityNames
+ {
+ public const string User = "User";
+ public const string Timeline = "Timeline";
+ public const string TimelinePost = "TimelinePost";
+ }
+}