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

import Foundation

public struct ModulationElem: Codable {
    public var time: Double
    public var key: String

    public init(time: Double, key: String) {
        self.time = time
        self.key = key
    }
}
