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.
 
 
 
 
 
 

25 lines
694 B

  1. namespace Learun.Application.WeChat
  2. {
  3. public class MediaUploadResult : OperationResultsBase
  4. {
  5. /// <summary>
  6. /// 媒体文件类型,分别有图片(image)、语音(voice)、视频(video),普通文件(file)
  7. /// </summary>
  8. /// <returns></returns>
  9. public string type { get; set; }
  10. /// <summary>
  11. /// 媒体文件上传后获取的唯一标识
  12. /// </summary>
  13. /// <returns></returns>
  14. public string media_id { get; set; }
  15. /// <summary>
  16. /// 媒体文件上传时间戳
  17. /// </summary>
  18. /// <returns></returns>
  19. public string created_at { get; set; }
  20. }
  21. }