mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-14 10:24:35 +01:00
18 lines
352 B
Swift
18 lines
352 B
Swift
//
|
|
// 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"
|
|
case accountName = "accountName"
|
|
case feedID = "feedID"
|
|
case articleID = "articleID"
|
|
case folderName = "folderName"
|
|
}
|