Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
7 lines
327 B
C#
7 lines
327 B
C#
#nullable enable
|
|
namespace ErsatzTV.Core.Api.Troubleshooting;
|
|
|
|
// Returned once a troubleshooting playback session has started producing segments; Url is the
|
|
// rooted /iptv path the SPA feeds straight to hls.js (HlsPlayer never inspects the status code).
|
|
public record TroubleshootingPlaybackStartedResponseModel(string Url);
|