17 lines
390 B
PHP
17 lines
390 B
PHP
<?php
|
|
|
|
namespace App\DTOs;
|
|
|
|
class AffiliateResult
|
|
{
|
|
public function __construct(
|
|
public bool $isSuccess,
|
|
public string $originalUrl,
|
|
public ?string $affiliateUrl = null,
|
|
public ?string $errorMessage = null,
|
|
public float $executionTime = 0.0,
|
|
public ?string $sessionUsed = null,
|
|
public string $converterType = 'unknown'
|
|
) {}
|
|
}
|