oms-Accounting/Models/temp/StructureElementInterface.php

8 lines
154 B
PHP

<?php
interface StructureElementInterface {
public function getId() : int;
public function getName() : string;
public function getValues() : array;
}