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

17 lines
343 B
C#
Raw Normal View History

2026-01-12 11:39:16 +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 WeekPushChartResp
{
2026-02-26 15:59:06 +08:00
public string Day { get; set; }
2026-01-12 11:39:16 +08:00
public string Platform { get; set; }
public int PushCount { get; set; }
}
}