You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
533 B

  1. namespace Learun.Application.WeChat
  2. {
  3. /// <summary>
  4. /// 邀请用户关注
  5. /// </summary>
  6. public class UserInvite : OperationRequestBase<OperationResultsBase, HttpPostRequest>
  7. {
  8. protected override string Url()
  9. {
  10. return "https://qyapi.weixin.qq.com/cgi-bin/invite/send?access_token=ACCESS_TOKEN";
  11. }
  12. /// <summary>
  13. /// 员工UserID
  14. /// </summary>
  15. /// <returns></returns>
  16. [IsNotNull]
  17. public string userid { get; set; }
  18. }
  19. }