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

import Foundation

public struct AlignedLyricsV3Spec: Codable, Equatable {
    public var enableAugmentation: Bool
    public var lyrics: String?

    public init(enableAugmentation: Bool? = nil, lyrics: String? = nil) {
        self.enableAugmentation = enableAugmentation ?? true
        self.lyrics = lyrics
    }
}
