Files
stream-shorts/src/StreamShorts.Library/Analysis/TranscriptAnalysis.cs
T

12 lines
406 B
C#
Raw Normal View History

2025-07-31 00:10:27 -05:00
namespace StreamShorts.Library.Analysis;
2025-08-03 22:06:16 -05:00
/// <summary>
/// Represents the analysis of a transcript, containing short clips derived from the transcript.
/// </summary>
public sealed class TranscriptAnalysis(IEnumerable<ShortClip> shortClips)
2025-07-31 00:10:27 -05:00
{
2025-08-03 22:06:16 -05:00
/// <summary>
/// Gets the short clips derived from the transcript.
/// </summary>
2025-07-31 00:10:27 -05:00
public IEnumerable<ShortClip> ShortClips { get; init; } = shortClips;
}