mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-22 23:58:36 +01:00
24 lines
389 B
Swift
24 lines
389 B
Swift
//
|
|
// FeedRowIdentifier.swift
|
|
// NetNewsWire-iOS
|
|
//
|
|
// Created by Maurice Parker on 10/20/21.
|
|
// Copyright © 2021 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class FeedRowIdentifier: NSObject, NSCopying {
|
|
|
|
var indexPath: IndexPath
|
|
|
|
init(indexPath: IndexPath) {
|
|
self.indexPath = indexPath
|
|
}
|
|
|
|
func copy(with zone: NSZone? = nil) -> Any {
|
|
return self
|
|
}
|
|
|
|
}
|