NetNewsWire/iOS/Feeds/Cell/FeedRowIdentifier.swift

24 lines
389 B
Swift
Raw Normal View History

//
2024-02-26 17:37:15 +01:00
// FeedRowIdentifier.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 10/20/21.
// Copyright © 2021 Ranchero Software. All rights reserved.
//
import Foundation
2024-02-26 17:37:15 +01:00
class FeedRowIdentifier: NSObject, NSCopying {
var indexPath: IndexPath
init(indexPath: IndexPath) {
self.indexPath = indexPath
}
func copy(with zone: NSZone? = nil) -> Any {
return self
}
}