# ali2woo-lite/trunk/includes/classes/dto/service/ProductImportResultDTO.php

AliNext – WooCommerce Dropshipping Plugin for AliExpress, version trunk. 20 lines.

- Page: https://pluginprobe.com/plugins/ali2woo-lite/trunk/code/includes/classes/dto/service/ProductImportResultDTO.php
- Raw: https://pluginprobe.com/plugins/ali2woo-lite/trunk/raw/includes/classes/dto/service/ProductImportResultDTO.php
- Modified: 2025-07-24T12:51:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ali2woo-lite/trunk/code/includes/classes/dto/service/ProductImportResultDTO.php#L10-L20`.

```php
<?php

/**
 * Description of ProductImportResultDTO
 *
 * @author Ali2Woo Team
 */

namespace AliNext_Lite;;

class ProductImportResultDTO
{
    public function __construct(
        public string $status,
        public ?string $message = null,
        public ?array $product = null
    ) {}
}


```
