farm-2.x-dev/modules/core/quantity/src/Entity/QuantityTypeInterface.php
modules/core/quantity/src/Entity/QuantityTypeInterface.php
<?php
namespace Drupal\quantity\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
use Drupal\Core\Entity\EntityDescriptionInterface;
use Drupal\Core\Entity\RevisionableEntityBundleInterface;
/**
* Provides an interface for defining quantity type entities.
*/
interface QuantityTypeInterface extends ConfigEntityInterface, EntityDescriptionInterface, RevisionableEntityBundleInterface {
}
