This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
avh-plan-ios/AvH Plan/PlanViewCell.swift
T

22 lines
530 B
Swift
Raw Normal View History

//
// PlanViewCell.swift
// AvH Plan
//
// Created by Deniz Duezgoeren on 16.07.19.
// Copyright © 2019 Deniz Duezgoeren. All rights reserved.
//
import UIKit
class PlanViewCell: GenericViewCell {
@IBOutlet weak var group: UILabel!
@IBOutlet weak var date: UILabel!
@IBOutlet weak var course: UILabel!
@IBOutlet weak var time: UILabel!
@IBOutlet weak var additional: UILabel!
@IBOutlet weak var room: UILabel!
@IBOutlet weak var tintView: UIView!
2019-08-23 14:38:50 +02:00
@IBOutlet weak var teacher: UILabel!
}