mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-03-03 13:29:24 +01:00
10 lines
222 B
PHP
10 lines
222 B
PHP
<?php
|
|
|
|
namespace Xentral\Modules\Onlineshop\Data;
|
|
|
|
class ArticleExportResult {
|
|
public int $articleId = 0;
|
|
public bool $success = false;
|
|
public ?string $message = null;
|
|
public ?string $extArticleId = null;
|
|
} |