<?php
namespace Komma\KMS\Core\Entities;
interface DisplayNameInterface
{
/**
* Get the name of this model by model or translation model
*
* @return null|string
*/
public function getDisplayName():?string;
/**
* Get the name for the sidebar
*
* @return string
*/
public function getSidebarName():string;
}