Files
RxSwift/RxDataSourceStarterKit/SectionModelType.swift
Krunoslav Zaher a3ffa9fc80 RxCocoa revamp.
2015-07-05 13:33:13 +02:00

17 lines
309 B
Swift

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