using System.ComponentModel.DataAnnotations; using Timeline.Models.Validation; namespace Timeline.Models.Http { /// /// Move highlight timeline request body model. /// public class HttpHighlightTimelineMoveRequest { /// /// Timeline name. /// [GeneralTimelineName] public string Timeline { get; set; } = default!; /// /// New position, starting at 1. /// [Required] public long? NewPosition { get; set; } } }