1234567891011121314151617181920 |
- //
- // NewAssessmentCollectionViewCell.swift
- // LMS
- //
- // Created by Suraj Kumar Mandal on 19/10/23.
- //
- import UIKit
- class NewAssessmentCollectionViewCell: UICollectionViewCell {
-
- @IBOutlet var customView: UIView!
- @IBOutlet var testImageView: RoundedTopCornersImageView!
- @IBOutlet var testNameLabel: UILabel!
- @IBOutlet var takeExamButton: UIButton!
- @IBOutlet var scoreLabel: UILabel!
- @IBOutlet var attemptsLabel: UILabel!
- @IBOutlet var serialNoLabel: UILabel!
-
- }
|