Kavita/API/DTOs/Dashboard/UpdateStreamPositionDto.cs
2025-05-04 08:41:29 -05:00

9 lines
240 B
C#

namespace API.DTOs.Dashboard;
public sealed record UpdateStreamPositionDto
{
public int FromPosition { get; set; }
public int ToPosition { get; set; }
public int Id { get; set; }
public string StreamName { get; set; }
}