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

import Foundation

public struct MidiNoteSchema: Codable, Equatable {
    public var end: Double
    public var pitch: Int
    public var start: Double
    public var velocity: Double

    public init(end: Double, pitch: Int, start: Double, velocity: Double) {
        self.end = end
        self.pitch = pitch
        self.start = start
        self.velocity = velocity
    }
}
