/*---------------------------------------------------------------- Copyright (C) 2019 Senparc 文件名:SpeedResult.cs 文件功能描述:群发速度 创建标识:Senparc - 20180929 ----------------------------------------------------------------*/ using Senparc.Weixin.Entities; namespace Senparc.Weixin.MP.AdvancedAPIs.GroupMessage { /// /// 获取群发速度 /// public class GetSpeedResult:WxJsonResult { /// /// 群发速度的级别 /// public int speed { get; set; } /// /// 群发速度的真实值 单位:万/分钟 /// public int realspeed { get; set; } } }