using LotteryWebApp.Service; using System; using System.Collections.Generic; namespace LotteryWebApp.Models { public class HomeIndex_ViewModel { public string termType { get; set; } public Profile profile { get; set; } public UserStatus userStatus { get; set; } public List listTerm { get; set; } public String uuid { get; set; } public String subDomain { get; set; } public String topWinner { get; set; } public DateTime serverTime { get; set; } public double secondsUntilDraw { get; set; } } public class HomeTransfer_ViewModel { public string step { get; set; } public string code { get; set; } public string walletType { get; set; } public Profile profile { get; set; } public UserStatus userStatus { get; set; } public Transaction transaction { get; set; } public TransferMoneyRequest transferData { get; set; } public DateTime serverTime { get; set; } } public class HomeRules_ViewModel { public string termType { get; set; } public DateTime serverTime { get; set; } } public class HomeFAQ_ViewModel { public DateTime serverTime { get; set; } } public class HomeResults_ViewModel { public string termType { get; set; } public string fromDate { get; set; } public string toDate { get; set; } public DateTime serverTime { get; set; } } public class TermResultModel { public List listTerm { get; set; } public string termType { get; set; } public DateTime serverTime { get; set; } } public class TermResultHistoryModel { public List listTerm { get; set; } public string termType { get; set; } public string fromDate { get; set; } public string toDate { get; set; } public DateTime serverTime { get; set; } } public class UserTicketHistoryModel { public List listTicket { get; set; } public string termType { get; set; } public string status { get; set; } public string totalPage { get; set; } public string seqPage { get; set; } public DateTime serverTime { get; set; } } }