import APIClient
import Foundation

public enum CommentsActivationState: Equatable {
    case notActive
    case activeOnClip(ClipID)

    public var isActive: Bool {
        switch self {
        case .notActive:
            return false
        case .activeOnClip:
            return true
        }
    }
}
