26 lines
418 B
Swift
26 lines
418 B
Swift
//
|
|
// FAStoreCoinsCell.swift
|
|
// Fableon
|
|
//
|
|
// Created by 湖北秦九 on 2025/10/24.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class FAStoreCoinsCell: UICollectionViewCell {
|
|
|
|
var model: FAPayItem?
|
|
|
|
var fa_isSelected = false
|
|
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
}
|