2019-08-24 19:31:29 -05:00
|
|
|
//
|
|
|
|
// ActivityType.swift
|
|
|
|
// NetNewsWire-iOS
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 8/24/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
enum ActivityType: String {
|
2019-11-26 16:33:11 -06:00
|
|
|
case restoration = "Restoration"
|
2019-11-14 15:06:32 -06:00
|
|
|
case selectFeed = "SelectFeed"
|
|
|
|
case nextUnread = "NextUnread"
|
|
|
|
case readArticle = "ReadArticle"
|
2019-10-20 19:05:11 -05:00
|
|
|
case addFeedIntent = "AddFeedIntent"
|
2019-08-24 19:31:29 -05:00
|
|
|
}
|