Archived
16 lines
296 B
Swift
16 lines
296 B
Swift
//
|
|||
|
|
// ColourViewCell.swift
|
||
|
|
// AvH Plan
|
||
|
|
//
|
||
|
|
// Created by Deniz Duezgoeren on 21.07.19.
|
||
|
|
// Copyright © 2019 Deniz Duezgoeren. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
import UIKit
|
||
|
|
|
||
|
|
class ColourViewCell: GenericViewCell {
|
||
|
|
|
||
|
|
@IBOutlet weak var colorView: UIView!
|
||
|
|
@IBOutlet weak var label: UILabel!
|
||
|
|
}
|