Files
ContainerController/ContainerControllerSwift/ContainerCollection/CollectionAdapterCellData.swift
T
2020-06-09 23:01:58 +03:00

20 lines
369 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// ColletionAdapterCellData.swift
// PatternsSwift
//
// Created by Рустам Мотыгуллин on 01/05/2020.
// Copyright © 2020 mrusta. All rights reserved.
//
import UIKit
open class CollectionAdapterCellData: NSObject {
public var selectCallback: (() -> Void)?
open func size() -> CGSize {
return CGSize.zero
}
}