SearchModel.cs 561 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace ReportWeb.Models
  6. {
  7. public class SearchModel
  8. {
  9. public string msisdn { get; set; }
  10. public DateTime fromDate { get; set; }
  11. public DateTime toDate { get; set; }
  12. public List<RegInfo> listRegInfo { get; set; }
  13. public List<ChargeLog> listChargeLog { get; set; }
  14. public List<SpinLog> listSpin { get; set; }
  15. public List<UserCoin> rankingCoin { get; set; }
  16. public int remainSpin { get; set; }
  17. }
  18. }