mirror of
https://github.com/tappollo/WWDC.git
synced 2026-06-11 15:43:45 +08:00
22 lines
525 B
Swift
22 lines
525 B
Swift
//
|
|
// TranscriptAnnotation.swift
|
|
// WWDC
|
|
//
|
|
// Created by Guilherme Rambo on 06/02/17.
|
|
// Copyright © 2017 Guilherme Rambo. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
import RealmSwift
|
|
|
|
/// TranscriptAnnotation is a line within an ASCIIWWDC transcript, with its associated timestamp within the session's video
|
|
public class TranscriptAnnotation: Object {
|
|
|
|
/// The time this annotation occurs within the video
|
|
public dynamic var timecode = 0.0
|
|
|
|
/// The annotation's text
|
|
public dynamic var body = ""
|
|
|
|
}
|