8 lines
154 B
Swift
8 lines
154 B
Swift
import Foundation
|
|
|
|
public struct ArtistCredit: Codable, Sendable {
|
|
public let name: String
|
|
public let artist: Artist?
|
|
public let joinphrase: String?
|
|
}
|