mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
17 lines
239 B
PHP
17 lines
239 B
PHP
<?php
|
|
|
|
namespace Xentral\Modules\EtsyApi\Credential;
|
|
|
|
interface CredentialDataInterface
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getIdentifier();
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getSecret();
|
|
}
|