aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models/Timeline.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-02-06 16:41:19 +0800
committercrupest <crupest@outlook.com>2021-02-06 16:41:19 +0800
commit3591f59453846e235ce77e15adde6092dbbedac3 (patch)
tree3663c6da19945d9514f040c53205f037b49ec998 /BackEnd/Timeline/Models/Timeline.cs
parentc987364ce795c7f4fe837ad8c2a685558c25b0b5 (diff)
downloadtimeline-3591f59453846e235ce77e15adde6092dbbedac3.tar.gz
timeline-3591f59453846e235ce77e15adde6092dbbedac3.tar.bz2
timeline-3591f59453846e235ce77e15adde6092dbbedac3.zip
...
Diffstat (limited to 'BackEnd/Timeline/Models/Timeline.cs')
-rw-r--r--BackEnd/Timeline/Models/Timeline.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/BackEnd/Timeline/Models/Timeline.cs b/BackEnd/Timeline/Models/Timeline.cs
deleted file mode 100644
index 9f3eabdf..00000000
--- a/BackEnd/Timeline/Models/Timeline.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-namespace Timeline.Models
-{
- public enum TimelineVisibility
- {
- /// <summary>
- /// All people including those without accounts.
- /// </summary>
- Public,
- /// <summary>
- /// Only people signed in.
- /// </summary>
- Register,
- /// <summary>
- /// Only member.
- /// </summary>
- Private
- }
-
- public static class TimelinePostContentTypes
- {
- public const string Text = "text";
- public const string Image = "image";
- }
-}