Public Access
17 lines
362 B
C#
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
|
|
}
|