2019-08-24 21:57:51 +02: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-25 02:31:29 +02:00
|
|
|
case accountName = "accountName"
|
2019-08-24 21:57:51 +02:00
|
|
|
case feedID = "feedID"
|
|
|
|
case articleID = "articleID"
|
2019-08-28 00:43:15 +02:00
|
|
|
case folderName = "folderName"
|
2019-08-24 21:57:51 +02:00
|
|
|
}
|