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
commitd42d826ae863b20913321d229a168b05d723db73 (patch)
tree51831c60b08fabe9c83ce6ac3dbf1498310b9831 /BackEnd/Timeline/Models/Timeline.cs
parent66658abde1220a53d0e022aaac8dd49a15034a34 (diff)
downloadtimeline-d42d826ae863b20913321d229a168b05d723db73.tar.gz
timeline-d42d826ae863b20913321d229a168b05d723db73.tar.bz2
timeline-d42d826ae863b20913321d229a168b05d723db73.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";
- }
-}