mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-12-06 11:22:41 +01:00
implemented Organization Provider models
This commit is contained in:
parent
0e197d02cb
commit
92cef844d4
5 changed files with 120 additions and 47 deletions
29
lib/Model/OrganizationRole.php
Normal file
29
lib/Model/OrganizationRole.php
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
namespace OCA\OrganizationFolders\Model;
|
||||
|
||||
class OrganizationRole implements \JsonSerializable {
|
||||
public function __construct(
|
||||
private int $id,
|
||||
private int $organizationId,
|
||||
private string $friendlyName,
|
||||
private string $membersGroup,
|
||||
) {
|
||||
}
|
||||
|
||||
public function getId(): int {
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
public function getOrganizationId(): int {
|
||||
return $this->organizationId;
|
||||
}
|
||||
|
||||
public function getFriendlyName(): string {
|
||||
return $this->friendlyName;
|
||||
}
|
||||
|
||||
public function getMembersGroup(): string {
|
||||
return $this->membersGroup;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue