using System.ComponentModel.DataAnnotations; namespace API.DTOs.ReadingLists; /// /// DTO for moving a reading list item to another position within the same list /// public class UpdateReadingListPosition { [Required] public int ReadingListId { get; set; } [Required] public int ReadingListItemId { get; set; } public int FromPosition { get; set; } [Required] public int ToPosition { get; set; } }