7 lines
104 B
Swift
7 lines
104 B
Swift
import UIKit
|
|
|
|
protocol ConfigurableCell {
|
|
associatedtype Item
|
|
func configure(with item: Item)
|
|
}
|