7 lines
155 B
Swift
7 lines
155 B
Swift
import Foundation
|
|
|
|
public struct URLResource: Codable, Sendable, Identifiable, Hashable, Equatable {
|
|
public let id: String
|
|
public let resource: String
|
|
}
|