123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace OSS\Model;
- class BucketListInfo
- {
-
- public function __construct(array $bucketList)
- {
- $this->bucketList = $bucketList;
- }
-
- public function getBucketList()
- {
- return $this->bucketList;
- }
-
- private $bucketList = array();
- }
|