| 123456789101112131415161718192021222324252627282930313233 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace WebChallenge.Models
- {
- public class PlayTopReq : Posting
- {
- public string fromdate { get; set; }
- public string todate { get; set; }
- public string top { get; set; }
- }
- public class TopUser
- {
- public string msisdn { get; set; }
- public string totalScore { get; set; }
- public string totalTime { get; set; }
- public string timeUpdate { get; set; }
- public string seq { get; set; }
- }
- public class PlayTopResponse
- {
- public string status { get; set; }
- public string message { get; set; }
- public List<TopUser> listTop { get; set; }
- public static new PlayTopResponse Parse(string json)
- {
- return JsonConvert.DeserializeObject<PlayTopResponse>(json);
- }
- }
- }
|