aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models/TimelineBookmark.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BackEnd/Timeline/Models/TimelineBookmark.cs')
-rw-r--r--BackEnd/Timeline/Models/TimelineBookmark.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Models/TimelineBookmark.cs b/BackEnd/Timeline/Models/TimelineBookmark.cs
new file mode 100644
index 00000000..58392182
--- /dev/null
+++ b/BackEnd/Timeline/Models/TimelineBookmark.cs
@@ -0,0 +1,16 @@
+namespace Timeline.Models
+{
+ public class TimelineBookmark
+ {
+ public TimelineBookmark(string timelineOwner, string timelineName, int position)
+ {
+ TimelineOwner = timelineOwner;
+ TimelineName = timelineName;
+ Position = position;
+ }
+
+ public string TimelineOwner { get; set; }
+ public string TimelineName { get; set; }
+ public int Position { get; set; }
+ }
+}