farm-2.x-dev/modules/asset/structure/src/Entity/FarmStructureTypeInterface.php
modules/asset/structure/src/Entity/FarmStructureTypeInterface.php
<?php
namespace Drupal\farm_structure\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining FarmStructureType config entities.
*
* @ingroup farm
*/
interface FarmStructureTypeInterface extends ConfigEntityInterface {
/**
* Returns the structure type label.
*
* @return string
* The structure type label.
*/
public function getLabel();
}
