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

19 lines
417 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Response
{
public class WeekPushChartResp
{
public int Year { get; set; }
public int Month { get; set; }
public int Day { get; set; }
public string Platform { get; set; }
public int PushCount { get; set; }
}
}