nextcloud/lib/public/TaskProcessing/ShapeDescriptor.php
Marcel Klehr 00894e2420 feat: first pass at TaskProcessing API
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
2024-05-14 11:38:39 +02:00

24 lines
407 B
PHP

<?php
namespace OCP\TaskProcessing;
class ShapeDescriptor {
public function __construct(
private string $name,
private string $description,
private EShapeType $shapeType,
) {
}
public function getName(): string {
return $this->name;
}
public function getDescription(): string {
return $this->description;
}
public function getShapeType(): EShapeType {
return $this->shapeType;
}
}