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 }