- Moved chat-related controllers, resources, requests, and DTOs into their respective `Chats` namespaces. - Updated route imports to reflect new namespace structure.
16 lines
270 B
PHP
16 lines
270 B
PHP
<?php
|
|
|
|
namespace App\Data\Chats;
|
|
|
|
use Carbon\CarbonInterface;
|
|
|
|
class SocialMediaPostResponseDto
|
|
{
|
|
public function __construct(
|
|
public string $id,
|
|
public string $post,
|
|
public string $image,
|
|
public CarbonInterface $createdAt
|
|
) {}
|
|
}
|