Kavita/API/DTOs/Dashboard/UpdateStreamPositionDto.cs
Fesaa 2c6eddfebb
Custom keybinds, Default language per Library, and bugfixes (#4162)
Co-authored-by: Joseph Milazzo <josephmajora@gmail.com>
2025-11-01 07:56:00 -07:00

14 lines
414 B
C#

namespace API.DTOs.Dashboard;
public sealed record UpdateStreamPositionDto
{
public string StreamName { get; set; }
public int Id { get; set; }
public int FromPosition { get; set; }
public int ToPosition { get; set; }
/// <summary>
/// If the <see cref="ToPosition"/> has taken into account non-visible items
/// </summary>
public bool PositionIncludesInvisible { get; set; }
}