HistoryViewModel.cs 663 B

123456789101112131415161718192021222324252627
  1. using LotteryWebApp.Service;
  2. using System.Collections.Generic;
  3. namespace LotteryWebApp.Models
  4. {
  5. public class History_ViewModel
  6. {
  7. public string winType { get; set; }
  8. public string gameId { get; set; }
  9. }
  10. public class HistoryUserTicket_ViewModel
  11. {
  12. public string winType { get; set; }
  13. public string gameId { get; set; }
  14. public List<Ticket> tickets { get; set; }
  15. }
  16. public class HistoryTicketDetail_ViewModel
  17. {
  18. public Ticket ticket { get; set; }
  19. public string winType { get; set; }
  20. public string msisdn { get; set; }
  21. public string type { get; set; }
  22. }
  23. }