mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-23 21:37:23 -05:00
14 lines
414 B
C#
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; }
|
|
}
|