import PimNationMgrUIServiceBase from './pim-nation-mgr-ui-service-base';

/**
 * 民族管理UI服务对象
 *
 * @export
 * @class PimNationMgrUIService
 */
export default class PimNationMgrUIService extends PimNationMgrUIServiceBase {

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

}