// // Credentials.swift // NetNewsWire // // Created by Brent Simmons on 12/9/17. // Copyright © 2017 Ranchero Software. All rights reserved. // import Foundation public enum CredentialsError: Error { case incompleteCredentials case unhandledError(status: OSStatus) } public enum CredentialsType: String { case basic = "password" case readerBasic = "readerBasic" case readerAPIKey = "readerAPIKey" case oauthAccessToken = "oauthAccessToken" case oauthRefreshToken = "oauthRefreshToken" } public struct Credentials { public let type: CredentialsType public let username: String public let secret: String public init(type: CredentialsType, username: String, secret: String) { self.type = type self.username = username self.secret = secret } }