Chord
struct Chord: Codable
Instrument chord
-
Name of the chord
Declaration
Swift
let name: String -
Optional display name
Declaration
Swift
let display: String? -
Base fret
Declaration
Swift
let base: Int? -
Frets
Declaration
Swift
let frets: [Int]? -
Fingers
Declaration
Swift
let fingers: [Int]? -
Optional copy of another chord
Declaration
Swift
let copy: String?
View on GitHub