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

import Foundation

public struct LyricsSearchRequest: Codable, Equatable {
    public var createdBefore: String?
    public var lyrics: String

    public init(createdBefore: String? = nil, lyrics: String) {
        self.createdBefore = createdBefore
        self.lyrics = lyrics
    }
}
