Files
WWDC/ConfCore/TranscriptAnnotation.swift
2017-05-28 15:34:02 -03:00

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 = ""
}