| 123456789101112131415161718192021222324252627 |
- 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<Ticket> 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; }
- }
- }
|