Files
meeting-assistant/MeetingAssistant/Transcription/TranscriptionSegment.cs
T
codex b774ccc375
PR and Push Build/Test / build-and-test (push) Successful in 18m41s
Add resilient Azure offline transcription backlog
2026-06-15 17:26:34 +02:00

17 lines
362 B
C#

namespace MeetingAssistant.Transcription;
public sealed record TranscriptionSegment(
TimeSpan Start,
TimeSpan End,
string Speaker,
string Text,
TranscriptionSegmentKind Kind = TranscriptionSegmentKind.Speech,
string? MarkerId = null,
string? ReplacesMarkerId = null);
public enum TranscriptionSegmentKind
{
Speech,
Marker
}