ApproveCallBackInputDTO.cs 494 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Dtos.CallBack.QiYeWeChat
  7. {
  8. /// <summary>
  9. /// 企业微信
  10. /// 回调通知
  11. /// </summary>
  12. public class ApproveCallBackInputDTO
  13. {
  14. public string? msg_signature { get; set; }
  15. public string? timestamp { get; set; }
  16. public string? nonce { get; set; }
  17. public string? echostr { get; set; }
  18. }
  19. }