LASAPlatform/OpenAuth.App/ServiceApp/Response/PlatformDashboardResp.cs

19 lines
478 B
C#
Raw Normal View History

2026-01-12 10:44:47 +08:00
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; }
}
}