Joywork/import/document/target/DocTarget.php
2026-05-22 21:21:54 +03:00

22 lines
314 B
PHP

<?php
interface DocTarget {
const TYPE_APARTMENT = 1;
const TYPE_BLOCK = 2;
const TYPE_BLOCK_PROGRESS = 3;
const TYPE_BLOCK_PLUS = 9;
/**
* @return integer
*/
public function getDocTargetType();
/**
* @return integer
*/
public function getDocTargetId();
}