diff options
Diffstat (limited to 'BackEnd/Timeline/Models/Http/BookmarkTimeline.cs')
-rw-r--r-- | BackEnd/Timeline/Models/Http/BookmarkTimeline.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/BackEnd/Timeline/Models/Http/BookmarkTimeline.cs b/BackEnd/Timeline/Models/Http/BookmarkTimeline.cs deleted file mode 100644 index 14be1112..00000000 --- a/BackEnd/Timeline/Models/Http/BookmarkTimeline.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System.ComponentModel.DataAnnotations;
-using Timeline.Models.Validation;
-
-namespace Timeline.Models.Http
-{
- /// <summary>
- /// Move bookmark timeline request body model.
- /// </summary>
- public class HttpBookmarkTimelineMoveRequest
- {
- /// <summary>
- /// Timeline name.
- /// </summary>
- [GeneralTimelineName]
- public string Timeline { get; set; } = default!;
-
- /// <summary>
- /// New position, starting at 1.
- /// </summary>
- [Required]
- public long? NewPosition { get; set; }
- }
-}
|