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