<?php

namespace bff\contracts;

/**
 * Base Provider
 * Provides data or service
 */
interface Provider
{
    /**
     * Provider unique key
     * @return string
     */
    public function providerKey(): string;

    /**
     * Provider title
     * @return string
     */
    public function providerTitle(): string;
}