mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-05-08 16:09:44 +08:00
21 lines
438 B
PHP
21 lines
438 B
PHP
<?php
|
|
|
|
namespace Convoy\Data\Server\Deployments;
|
|
|
|
use Convoy\Models\Server;
|
|
use Convoy\Models\Template;
|
|
use Spatie\LaravelData\Data;
|
|
|
|
class ServerDeploymentData extends Data
|
|
{
|
|
public function __construct(
|
|
public Server $server,
|
|
public ?Template $template,
|
|
public ?string $account_password,
|
|
public bool $should_create_server,
|
|
public bool $start_on_completion,
|
|
)
|
|
{
|
|
}
|
|
}
|