import WFGroupUIServiceBase from './wfgroup-ui-service-base';

/**
 * 角色/用户组UI服务对象
 *
 * @export
 * @class WFGroupUIService
 */
export default class WFGroupUIService extends WFGroupUIServiceBase {

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

}