mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-12 09:26:26 +01:00
15 lines
262 B
Swift
15 lines
262 B
Swift
//
|
|
// OPMLRepresentable.swift
|
|
// DataModel
|
|
//
|
|
// Created by Brent Simmons on 7/1/17.
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol OPMLRepresentable {
|
|
|
|
func OPMLString(indentLevel: Int) -> String
|
|
}
|