| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using Newtonsoft.Json;
- using SuperAdmin.Models.Object;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace SuperAdmin.Models.Http
- {
- public class TrafficDayReq : Posting
- {
- public string gameId { get; set; }
- public string fromDate { get; set; }
- public string toDate { get; set; }
- public string rowsOnPage { get; set; }
- public string seqPage { get; set; }
- }
- public class RevenueDay
- {
- public string date { get; set; }
- public string gameId { get; set; }
- public string totalUser { get; set; }
- public string totalTicket { get; set; }
- public string totalMoney { get; set; }
- public string totalTicketWin { get; set; }
- public string totalMoneyWin { get; set; }
- public string rate { get; set; }
- }
- public class TrafficDayRes
- {
- public string rowsOnPage { get; set; }
- public string seqPage { get; set; }
- public string totalPage { get; set; }
- public object totalRow { get; set; }
- public List<RevenueDay> listRevenue { get; set; }
- public string responseCode { get; set; }
- public string responseMessage { get; set; }
- public TrafficDayRes() { }
- public static TrafficDayRes Parse(String json)
- {
- return JsonConvert.DeserializeObject<TrafficDayRes>(json);
- }
- }
- public class TrafficTotalRes
- {
- public string uniqueUsers { get; set; }
- public string totalTicket { get; set; }
- public string totalMoney { get; set; }
- public string totalTicketWin { get; set; }
- public string totalMoneyWin { get; set; }
- public string responseCode { get; set; }
- public string responseMessage { get; set; }
- public TrafficTotalRes() { }
- public static TrafficTotalRes Parse(String json)
- {
- return JsonConvert.DeserializeObject<TrafficTotalRes>(json);
- }
- }
- }
|