Skip to content

Commit

Permalink
add Abstract Response List
Browse files Browse the repository at this point in the history
  • Loading branch information
DyanGalih committed Apr 26, 2020
1 parent e488980 commit e2e343b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/Responses/AbstractResponseList.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?php
/**
* Author: galih
* Date: 2019-05-19
* Time: 22:33
*/

namespace WebAppId\DDD\Responses;

/**
* @author: Dyan Galih<[email protected]>
* Date: 26/04/20
* Time: 13.49
* Class AbstractResponse
* @package WebAppId\DDD\Responses
*/
abstract class AbstractResponseList
{
/**
* @var bool
*/
public $status;
/**
* @var string
*/
public $message;

/**
* @var int
*/
public $count;

/**
* @var int
*/
public $countFiltered;
}

0 comments on commit e2e343b

Please sign in to comment.