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