1
0
Fork 0
mirror of https://github.com/archtechx/laravel-tips.git synced 2025-12-12 05:14:04 +00:00
laravel-tips/app/Twitter/TwitterUser.php
2021-04-06 18:27:18 +02:00

13 lines
226 B
PHP

<?php
namespace App\Twitter;
class TwitterUser
{
public function __construct(
public string $id,
public string $name,
public string $username,
public string $profile_image_url,
) {}
}