2021-10-20 19:03:02 -05:00
|
|
|
//
|
2025-01-02 21:53:23 -08:00
|
|
|
// MainFeedRowIdentifier.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
|
|
|
|
|
2025-01-02 21:53:23 -08:00
|
|
|
class MainFeedRowIdentifier: NSObject, NSCopying {
|
2021-10-20 19:03:02 -05:00
|
|
|
|
|
|
|
var indexPath: IndexPath
|
2025-01-22 22:18:09 -08:00
|
|
|
|
2021-10-20 19:03:02 -05:00
|
|
|
init(indexPath: IndexPath) {
|
|
|
|
self.indexPath = indexPath
|
|
|
|
}
|
2025-01-22 22:18:09 -08:00
|
|
|
|
2021-10-20 19:03:02 -05:00
|
|
|
func copy(with zone: NSZone? = nil) -> Any {
|
|
|
|
return self
|
|
|
|
}
|
2025-01-22 22:18:09 -08:00
|
|
|
|
2021-10-20 19:03:02 -05:00
|
|
|
}
|