import IBIZAccountAuthServiceBase from './ibizaccount-auth-service-base';


/**
 * 账户权限服务对象
 *
 * @export
 * @class IBIZAccountAuthService
 * @extends {IBIZAccountAuthServiceBase}
 */
export default class IBIZAccountAuthService extends IBIZAccountAuthServiceBase {

    /**
     * Creates an instance of  IBIZAccountAuthService.
     * 
     * @param {*} [opts={}]
     * @memberof  IBIZAccountAuthService
     */
    constructor(opts: any = {}) {
        super(opts);
    }


}