22 lines
314 B
PHP
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();
|
|
} |