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