1234567891011121314151617 |
- //
- // UnitsCollectionViewCell.swift
- // LMS
- //
- // Created by Suraj Kumar Mandal on 06/09/22.
- //
- import UIKit
- class UnitsCollectionViewCell: UICollectionViewCell {
-
- @IBOutlet var customView: UIView!
- @IBOutlet var subjectNameLabel: UILabel!
- @IBOutlet var subjectImageView: UIImageView!
- @IBOutlet var serialNumberLabel: UILabel!
-
- }
|