//
// FFPageContentViewCell.swift
// FFPage
//
// Created by FFIB on 2017/10/17.
// Copyright © 2017年 FFIB. All rights reserved.
//
import UIKit
public typealias FFPageContentViewCell = FFPageContentViewCellDataSource & UIView
public protocol FFPageContentViewCellDataSource {
var identifier: String {set get}
var index: Int {set get}
}
|