NewAssessmentCollectionViewCell.swift 503 B

1234567891011121314151617181920
  1. //
  2. // NewAssessmentCollectionViewCell.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 19/10/23.
  6. //
  7. import UIKit
  8. class NewAssessmentCollectionViewCell: UICollectionViewCell {
  9. @IBOutlet var customView: UIView!
  10. @IBOutlet var testImageView: RoundedTopCornersImageView!
  11. @IBOutlet var testNameLabel: UILabel!
  12. @IBOutlet var takeExamButton: UIButton!
  13. @IBOutlet var scoreLabel: UILabel!
  14. @IBOutlet var attemptsLabel: UILabel!
  15. @IBOutlet var serialNoLabel: UILabel!
  16. }