//
//  SelectDeviceTableViewCell.swift
//  NeoSpectraMicroSwift
//
//  Created by Si-Ware on 11/15/17.
//  Copyright © 2017 siware. All rights reserved.
//

import UIKit

class SelectDeviceTableViewCell: UITableViewCell {

    @IBOutlet weak var nameLabel: UILabel!
    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }

    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)

        // Configure the view for the selected state
    }

}
