gamify-1.1.x-dev/modules/userpoints/src/Entity/UserPointsTypeInterface.php
modules/userpoints/src/Entity/UserPointsTypeInterface.php
<?php
namespace Drupal\userpoints\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining User points type entities.
*/
interface UserPointsTypeInterface extends ConfigEntityInterface {
// Add get/set methods for your configuration properties here.
}
