Files
WWDC/ConfCore/Keyword.swift
2017-06-13 17:57:49 -03:00

26 lines
548 B
Swift

//
// Keyword.swift
// WWDC
//
// Created by Guilherme Rambo on 06/02/17.
// Copyright © 2017 Guilherme Rambo. All rights reserved.
//
import Cocoa
import RealmSwift
/// Keywords used when searching sessions
public class Keyword: Object {
/// The keyword
public dynamic var name = ""
/// Sessions containing this keyword
// public let sessionInstances = LinkingObjects(fromType: SessionInstance.self, property: "keywords")
public override class func primaryKey() -> String? {
return "name"
}
}