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

import Foundation

/// Countdown timer for API response (no key field)
public struct CountdownResponse: Codable, Equatable {
    public var text: String
    public var timestamp: String

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