using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.Response { public class PlatformDashboardResp { public string Platform { get; set; } public bool ConnectState { get; set; } public int TodayPushCount { get; set; } public int TodaySuccessCount { get; set; } public decimal SuccessRate { get; set; } } }