2019-08-25 02:31:29 +02: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 23:33:11 +01:00
|
|
|
case restoration = "Restoration"
|
2019-11-14 22:06:32 +01:00
|
|
|
case selectFeed = "SelectFeed"
|
|
|
|
case nextUnread = "NextUnread"
|
|
|
|
case readArticle = "ReadArticle"
|
2019-10-21 02:05:11 +02:00
|
|
|
case addFeedIntent = "AddFeedIntent"
|
2019-08-25 02:31:29 +02:00
|
|
|
}
|