namespace StreamShorts.Library.Analysis; /// /// Represents the analysis of a transcript, containing short clips derived from the transcript. /// public sealed class TranscriptAnalysis(IEnumerable shortClips) { /// /// Gets the short clips derived from the transcript. /// public IEnumerable ShortClips { get; init; } = shortClips; }