mirror of
https://github.com/Karaka-Management/oms-Accounting.git
synced 2026-01-17 23:58:41 +00:00
8 lines
154 B
PHP
8 lines
154 B
PHP
<?php
|
|
|
|
interface StructureElementInterface {
|
|
public function getId() : int;
|
|
public function getName() : string;
|
|
public function getValues() : array;
|
|
}
|