RxSwift/RxExample/RxDataSourceStarterKit/SectionModelType.swift
2016-01-01 13:46:11 +01:00

17 lines
308 B
Swift

//
// SectionModelType.swift
// RxExample
//
// Created by Krunoslav Zaher on 6/28/15.
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//
import Foundation
public protocol SectionModelType {
typealias Item
var items: [Item] { get }
init(original: Self, items: [Item])
}