mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 20:50:26 +01:00
19 lines
342 B
PHP
19 lines
342 B
PHP
|
<?php
|
||
|
|
||
|
namespace OCA\OrganizationFolders\Model;
|
||
|
|
||
|
class Organization implements \JsonSerializable {
|
||
|
public function __construct(
|
||
|
private int $id,
|
||
|
private string $membersGroup,
|
||
|
) {
|
||
|
}
|
||
|
|
||
|
public function getId(): int {
|
||
|
return $this->id;
|
||
|
}
|
||
|
|
||
|
public function getMembersGroup(): string {
|
||
|
return $this->membersGroup;
|
||
|
}
|
||
|
}
|