1
0
mirror of https://github.com/OpenXE-org/OpenXE.git synced 2025-03-30 10:00:23 +02:00
2025-01-03 21:15:18 +01:00

14 lines
269 B
PHP

<?php
// SPDX-FileCopyrightText: 2025 Andreas Palm
//
// SPDX-License-Identifier: AGPL-3.0-only
namespace Xentral\Carrier\Go\Data;
class ErrorResponse {
public string $message;
public int $errorCode;
public int $status;
public \DateTime $timeStamp;
}