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

import Foundation

public struct GenLyricsSchema: Codable, Equatable {
    public var errorMessage: String
    public var status: String
    public var tags: [String]?
    public var text: String
    public var title: String

    public init(errorMessage: String, status: String, tags: [String]? = nil, text: String, title: String) {
        self.errorMessage = errorMessage
        self.status = status
        self.tags = tags
        self.text = text
        self.title = title
    }
}
