You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Application-Web/src/Core/Data/PersonalSpace/PersonalSpaceFolder.php

34 lines
543 B

<?php
namespace IQBall\Core\Data;
class PersonalSpaceFolder implements PersonalSpaceItem {
private int $id;
private string $name;
/**
* @param int $id
* @param string $name
*/
public function __construct(int $id, string $name) {
$this->id = $id;
$this->name = $name;
}
/**
* @return int
*/
public function getId(): int {
return $this->id;
}
/**
* @return string
*/
public function getName(): string {
return $this->name;
}
}