I think we're done
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import Foundation
|
||||
|
||||
public struct Instrument: MusicBrainzSearchable {
|
||||
public struct Instrument: MusicBrainzSearchable, Identifiable, Hashable, Equatable {
|
||||
public static let entityType: MusicBrainzEntity = .instrument
|
||||
|
||||
public let id: String
|
||||
@@ -11,7 +11,7 @@ public struct Instrument: MusicBrainzSearchable {
|
||||
public let relations: [Relation]?
|
||||
public let score: Int?
|
||||
|
||||
enum CodingKeys: String, CodingKey {
|
||||
enum CodingKeys: String, CodingKey, Hashable, Equatable {
|
||||
case id, name, type, description, disambiguation, score, relations
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user