import Foundation

public struct HooksVideoUploadDurationConfig: Codable, Equatable {
    public let minSeconds: Int
    public let maxSeconds: Int

    public init(minSeconds: Int, maxSeconds: Int) {
        self.minSeconds = minSeconds
        self.maxSeconds = maxSeconds
    }
}
