MsgOwerTypeEnum.cs 382 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WeChatCore.Enum
  7. {
  8. public enum MsgOwerTypeEnum
  9. {
  10. /// <summary>
  11. /// 接受消息
  12. /// </summary>
  13. AccepterMsg = 0,
  14. /// <summary>
  15. /// 发送消息
  16. /// </summary>
  17. SenderMsg = 1,
  18. }
  19. }