/*---------------------------------------------------------------- Copyright (C) 2019 Senparc 文件名:GetMediaCountResultJson.cs 文件功能描述:获取素材总数返回结果 创建标识:Senparc - 20150324 ----------------------------------------------------------------*/ using Senparc.Weixin.Entities; namespace Senparc.Weixin.MP.AdvancedAPIs.Media { /// /// 获取素材总数返回结果 /// public class GetMediaCountResultJson : WxJsonResult { /// /// 语音总数量 /// public int voice_count { get; set; } /// /// 视频总数量 /// public int video_count { get; set; } /// /// 图片总数量 /// public int image_count { get; set; } /// /// 图文总数量 /// public int news_count { get; set; } } }