infinito/application/src/Entity/Attribut/SurnameSourceAttribut.php

13 lines
268 B
PHP
Raw Normal View History

<?php
namespace App\Entity\Attribut;
use App\Entity\Source\Data\Name\SurnameSourceInterface;
interface SurnameSourceAttributInterface
{
public function getSurname(): SurnameSourceInterface;
public function setSurname(SurnameSourceInterface $name): void;
}