15 lines
244 B
Swift
15 lines
244 B
Swift
|
//
|
||
|
// AddControllerType.swift
|
||
|
// NetNewsWire-iOS
|
||
|
//
|
||
|
// Created by Maurice Parker on 9/5/19.
|
||
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
enum AddControllerType: Int {
|
||
|
case feed = 0
|
||
|
case folder = 1
|
||
|
}
|