mirror of
https://github.com/Aviortheking/Blog_IMIE.git
synced 2025-04-22 19:02:10 +00:00
13 lines
100 B
PHP
13 lines
100 B
PHP
<?php
|
|
|
|
namespace App\DB;
|
|
|
|
class Author {
|
|
|
|
private $id;
|
|
|
|
private $username;
|
|
|
|
private $linkedin;
|
|
}
|