1
0
mirror of synced 2024-11-23 21:36:08 +03:00
service-bundle/Models/Error.php

27 lines
301 B
PHP
Raw Permalink Normal View History

2021-02-05 14:47:54 +03:00
<?php
namespace RetailCrm\ServiceBundle\Models;
/**
* Class Error
*
* @package RetailCrm\ServiceBundle\Models
*/
class Error
{
/**
* @var string
*/
public $code;
/**
* @var string
*/
public $message;
/**
* @var array
*/
public $details;
}