//
//  PQBFConfig.swift
//  BFFramework
//
//  Created by SanW on 2021/6/4.
//

import UIKit

public class PQBFConfig: NSObject {
    public static let shared = PQBFConfig()
    public var styleColor: styleColor = .green

    override private init() {
        super.init()
    }

    override public func copy() -> Any {
        return self
    }

    override public func mutableCopy() -> Any {
        return self
    }
}