using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace ReportWeb.Models { public class SearchModel { public string msisdn { get; set; } public DateTime fromDate { get; set; } public DateTime toDate { get; set; } public List listRegInfo { get; set; } public List listChargeLog { get; set; } public List listSpin { get; set; } public List rankingCoin { get; set; } public int remainSpin { get; set; } } }