mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
13 lines
156 B
PHP
13 lines
156 B
PHP
|
<?php
|
||
|
namespace App\Models\Recipients;
|
||
|
|
||
|
use Illuminate\Notifications\Notifiable;
|
||
|
|
||
|
abstract class Recipient {
|
||
|
|
||
|
use Notifiable;
|
||
|
|
||
|
protected $email;
|
||
|
|
||
|
}
|