1
0
mirror of synced 2024-11-25 06:16:06 +03:00
service-bundle/Models/Error.php

13 lines
148 B
PHP
Raw Normal View History

2021-02-05 14:47:54 +03:00
<?php
namespace RetailCrm\ServiceBundle\Models;
class Error
{
2022-07-20 14:38:42 +03:00
public string $code;
2021-02-05 14:47:54 +03:00
2022-07-20 14:38:42 +03:00
public string $message;
2021-02-05 14:47:54 +03:00
2022-07-20 14:38:42 +03:00
public array $details;
2021-02-05 14:47:54 +03:00
}