16 lines
286 B
Swift
16 lines
286 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 feedID = "feedID"
|
||
|
case articleID = "articleID"
|
||
|
}
|