Advertisement
vuylov

Untitled

Feb 8th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2. namespace console\parsers;
  3.  
  4. class SourceTeaserExternalDTO
  5. {
  6.     const ERROR = -1;
  7.     const INACTIVE = 0;
  8.     const PROCESS = 1;
  9.     const MODERATION = 2;
  10.     const ACTIVE = 3;
  11.  
  12.     public $id;
  13.     public $status;
  14.     public $title;
  15.     public $description;
  16.     public $url;
  17.     public $image;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement