<?php
/**
* * * * * * * *<4297088@qq.com>
* */
namespace cn\gz53\framework\model\po\router;
use cn\gz53\framework\model\po\Po;
use cn\gz53\framework\sdk\router\RouterFileListCallbackSetSdkI;
class RouterFileListCallbackSetPo extends Po implements RouterFileListCallbackSetSdkI
{
private $routerListCallback;
public function getRouterListCallback(){
return $this->routerListCallback;
}
public function setRouterListCallback(callable $routerListCallback){
$this->routerListCallback = $routerListCallback;
}
}