passforios/pass/Views/ContentProvider.swift

13 lines
244 B
Swift
Raw Normal View History

//
// ContentTableViewCell.swift
// pass
//
// Created by Mingshen Sun on 12/2/2017.
// Copyright © 2017 Bob Sun. All rights reserved.
//
protocol ContentProvider {
func getContent() -> String?
func setContent(content: String?)
}