AutoCat/AutoCat/Cells/ConfigurableCell.swift

7 lines
104 B
Swift

import UIKit
protocol ConfigurableCell {
associatedtype Item
func configure(with item: Item)
}