NetNewsWire/iOS/MainFeed/Cell/MainFeedRowIdentifier.swift

24 lines
400 B
Swift
Raw Normal View History

//
// MainFeedRowIdentifier.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 10/20/21.
// Copyright © 2021 Ranchero Software. All rights reserved.
//
import Foundation
final class MainFeedRowIdentifier: NSObject, NSCopying {
var indexPath: IndexPath
2025-01-22 22:18:09 -08:00
init(indexPath: IndexPath) {
self.indexPath = indexPath
}
2025-01-22 22:18:09 -08:00
func copy(with zone: NSZone? = nil) -> Any {
return self
}
2025-01-22 22:18:09 -08:00
}