passforios/pass/Views/ContentProvider.swift

13 lines
239 B
Swift
Raw Normal View History

//
2021-08-28 07:32:31 +02:00
// ContentProvider.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?)
}