| 1234567891011121314151617181920 |
- 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<RegInfo> listRegInfo { get; set; }
- public List<ChargeLog> listChargeLog { get; set; }
- public List<SpinLog> listSpin { get; set; }
- public List<UserCoin> rankingCoin { get; set; }
- public List<LoyaltyPrize> loyaltyPrize { get; set; }
- public int remainSpin { get; set; }
- }
- }
|