BaseGroupInfo.php 359 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * result
  4. * @author auto create
  5. */
  6. class BaseGroupInfo
  7. {
  8. /**
  9. * conversation_id
  10. **/
  11. public $conversation_id;
  12. /**
  13. * icon
  14. **/
  15. public $icon;
  16. /**
  17. * open_conversation_id
  18. **/
  19. public $open_conversation_id;
  20. /**
  21. * owner
  22. **/
  23. public $owner;
  24. /**
  25. * tag
  26. **/
  27. public $tag;
  28. /**
  29. * title
  30. **/
  31. public $title;
  32. }
  33. ?>