Files
2022-10-26 23:39:28 +03:00

19 lines
354 B
Swift

//
// CommonCellCard.swift
// Wallet
//
// Created by Igor on 21.02.2021.
// Copyright © 2021 AM. All rights reserved.
//
import UIKit
class CommonCellCard: UITableViewCell {
@IBOutlet weak var cardView: CommonViewCard!
override func prepareForReuse() {
super.prepareForReuse()
self.cardView.prepareForReuse()
}
}