Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
16 lines
371 B
C#
16 lines
371 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Controllers.Api.Requests;
|
|
|
|
public record StartTroubleshootingPlaybackRequest(
|
|
int MediaItem,
|
|
int Channel,
|
|
int FfmpegProfile,
|
|
StreamingMode StreamingMode,
|
|
List<int> Watermark,
|
|
List<int> GraphicsElement,
|
|
string StreamSelector,
|
|
int? SubtitleId,
|
|
int SeekSeconds,
|
|
DateTimeOffset? Start);
|