using LotteryWebApp.Service; using System.Collections.Generic; namespace LotteryWebApp.Models { public class History_ViewModel { public string winType { get; set; } public string gameId { get; set; } } public class HistoryUserTicket_ViewModel { public string winType { get; set; } public string gameId { get; set; } public List tickets { get; set; } } public class HistoryTicketDetail_ViewModel { public Ticket ticket { get; set; } public string winType { get; set; } public string msisdn { get; set; } public string type { get; set; } } public class HistoryTransfer_ViewModel { public string seqPage { get; set; } public List moneyConverts { get; set; } } }