2019-08-24 14:57:51 -05:00
|
|
|
//
|
|
|
|
// ActivityID.swift
|
|
|
|
// NetNewsWire-iOS
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 8/23/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
enum ActivityID: String {
|
|
|
|
case accountID = "accountID"
|
2019-08-24 19:31:29 -05:00
|
|
|
case accountName = "accountName"
|
2019-08-24 14:57:51 -05:00
|
|
|
case feedID = "feedID"
|
|
|
|
case articleID = "articleID"
|
2019-08-27 17:43:15 -05:00
|
|
|
case folderName = "folderName"
|
2019-08-24 14:57:51 -05:00
|
|
|
}
|