mirror of
https://github.com/Karaka-Management/oms-Accounting.git
synced 2026-01-15 15:08:40 +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;
|
|
}
|