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

12 lines
406 B
C#

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