<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait termCodeTrait {
|
/**
|
* @var string A code that identifies this DefinedTerm within a DefinedTermSet.
|
*/
|
protected string $termCode;
|
|
public function getTermCode():?string
|
{
|
return $this->termCode??null;
|
}
|
public function setTermCode(string $termCode):void
|
{
|
$this->termCode = $termCode;
|
}
|
}
|