Implemented the Transcription model in the Recording package target.

This commit is contained in:
2026-07-04 10:53:33 +02:00
parent d7dc32d7f7
commit 8b46c4e7d1
4 changed files with 103 additions and 12 deletions
@@ -45,15 +45,3 @@ extension ContentView {
}
}
// MARK: - Models
extension ContentView.Model {
/// A transcription of a processed recording to present in the modal sheet.
struct Transcription: Identifiable {
/// The unique identifier of the transcription.
let id = UUID()
/// The transcribed text of the processed recording.
let text: String
}
}