CustomAppCreateResponseVo.php 261 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 定制应用
  4. * @author auto create
  5. */
  6. class CustomAppCreateResponseVo
  7. {
  8. /**
  9. * 定制应用id
  10. **/
  11. public $agent_id;
  12. /**
  13. * 定制应用key
  14. **/
  15. public $custom_key;
  16. /**
  17. * 定制应用secret
  18. **/
  19. public $custom_secret;
  20. }
  21. ?>