nextcloud/apps/files_external/3rdparty/php-opencloud/lib/OpenCloud/Common/ServiceCatalogItem.php

19 lines
274 B
PHP

<?php
namespace OpenCloud\Common;
/**
* Holds information on a single service from the Service Catalog
*/
class ServiceCatalogItem
{
public function __construct($info = array())
{
foreach($info as $key => $value) {
$this->$key = $value;
}
}
}