mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-01-12 22:47:34 +08:00
19 lines
390 B
Swift
19 lines
390 B
Swift
//
|
|
// InboxRowController.swift
|
|
// FreetimeWatch Extension
|
|
//
|
|
// Created by Ryan Nystrom on 4/27/18.
|
|
// Copyright © 2018 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import WatchKit
|
|
|
|
final class InboxRowController: NSObject {
|
|
|
|
@IBOutlet var repoLabel: WKInterfaceLabel!
|
|
@IBOutlet var ownerLabel: WKInterfaceLabel!
|
|
@IBOutlet var numberLabel: WKInterfaceLabel!
|
|
|
|
}
|