JoinCourseResponse.php 244 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * result
  4. * @author auto create
  5. */
  6. class JoinCourseResponse
  7. {
  8. /**
  9. * 加入的目标id
  10. **/
  11. public $join_target_id;
  12. /**
  13. * 加入链接
  14. **/
  15. public $join_url;
  16. /**
  17. * 是否可加入
  18. **/
  19. public $joinable;
  20. }
  21. ?>