mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-05-31 00:04:27 +08:00
12 lines
136 B
PHP
12 lines
136 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Values;
|
|
|
|
use Bag\Bag;
|
|
|
|
abstract readonly class DTO extends Bag
|
|
{
|
|
use ToJsonPretty;
|
|
}
|