Files
Kavita/API/DTOs/Dashboard/UpdateStreamPositionDto.cs
T
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; }
}