finished all models and split them into folders to avoid dupes

This commit is contained in:
Tony Roy 2021-03-12 23:37:51 -04:00
commit f80e0692cd
76 changed files with 1886 additions and 92 deletions

16
src/Api/Users/Config.php Normal file
View file

@ -0,0 +1,16 @@
<?php
namespace wickedsoft\NetBox\Api\Users;
class Config extends AbstractApi
{
/**
* @param $params
* @return mixed
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function list($params=[])
{
return $this->get("/users/users/", $params);
}
}