Everything works well and good structure.

This commit is contained in:
cdricms
2026-03-21 17:41:59 +01:00
parent ada1c12f57
commit 2d1e8e1044
30 changed files with 1068 additions and 875 deletions

View File

@@ -0,0 +1,20 @@
import Foundation
public struct Area: MusicBrainzSearchable {
public static let entityType: MusicBrainzEntity = .area
public let id: String
public let type: String?
public let name: String
public let sortName: String?
public let disambiguation: String?
public let lifeSpan: LifeSpan?
public let relations: [Relation]?
public let score: Int?
enum CodingKeys: String, CodingKey {
case id, type, name, disambiguation, score, relations
case sortName = "sort-name"
case lifeSpan = "life-span"
}
}