Files
NetNewsWire/iOS/MainFeed/Cell/MainFeedRowIdentifier.swift
2023-09-24 11:10:50 -07:00

24 lines
399 B
Swift

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