import Foundation public struct Work: MusicBrainzSearchable, Identifiable, Hashable, Equatable { public static let entityType: MusicBrainzEntity = .work public let id: String public let title: String public let type: String? public let language: String? public let disambiguation: String? public let relations: [Relation]? public let score: Int? enum CodingKeys: String, CodingKey, Hashable, Equatable { case id, title, type, language, disambiguation, score, relations } }