// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct MidiInstrumentSchema: Codable, Equatable {
    public var name: String
    public var notes: [MidiNoteSchema]

    public init(name: String, notes: [MidiNoteSchema]) {
        self.name = name
        self.notes = notes
    }
}
