CreateSessionDTO.php 186 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 新建会话参数
  4. * @author auto create
  5. */
  6. class CreateSessionDTO
  7. {
  8. /**
  9. * 会员来源
  10. **/
  11. public $source;
  12. /**
  13. * 会话目标
  14. **/
  15. public $target;
  16. }
  17. ?>