diff options
| author | crupest <crupest@outlook.com> | 2022-04-10 20:25:29 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2022-04-10 20:25:29 +0800 |
| commit | 9d2056786a38558c2ecba4406e2ba172eb0c5597 (patch) | |
| tree | e0b26da3fa0282a48c0bfcfc6be661482df14cc2 /BackEnd/Timeline/Models | |
| parent | d260c3c3fa073d1a9d09b94c5c4749334e26ab9a (diff) | |
| download | timeline-9d2056786a38558c2ecba4406e2ba172eb0c5597.tar.gz timeline-9d2056786a38558c2ecba4406e2ba172eb0c5597.tar.bz2 timeline-9d2056786a38558c2ecba4406e2ba172eb0c5597.zip | |
...
Diffstat (limited to 'BackEnd/Timeline/Models')
| -rw-r--r-- | BackEnd/Timeline/Models/TimelineBookmark.cs | 16 |
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; } + } +} |
