// // ContentListTableViewCell.swift // LMS // // Created by Suraj Kumar Mandal on 02/01/23. // import UIKit class ContentListTableViewCell: UITableViewCell { @IBOutlet var customView: UIView! @IBOutlet var contentLabel: UILabel! @IBOutlet var contentImageView: UIImageView! 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 } }