import Foundation

public struct GeneratedLyrics: Equatable, Hashable, Codable {
    public let title: String
    public let text: String
    public let status: String

    public init(title: String, text: String, status: String) {
        self.title = title
        self.text = text
        self.status = status
    }
}
