I think we're done

This commit is contained in:
cdricms
2026-03-21 18:25:21 +01:00
parent 2d1e8e1044
commit ba9e2db1b9
26 changed files with 281 additions and 63 deletions

View File

@@ -1,11 +1,11 @@
import Foundation
public struct SearchResponse<T: MusicBrainzSearchable>: Codable, Sendable {
public struct SearchResponse<T: MusicBrainzSearchable>: Codable, Sendable, Hashable, Equatable {
public let count: Int
public let offset: Int
public let entities: [T]
private enum CodingKeys: String, CodingKey {
private enum CodingKeys: String, CodingKey, Hashable, Equatable {
case count, offset
}