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; } /// /// If the has taken into account non-visible items /// public bool PositionIncludesInvisible { get; set; } }