BuyTicketViewModel.cs 990 B

1234567891011121314151617181920212223242526272829303132333435
  1. using LotteryWebApp.Service;
  2. using System.Collections.Generic;
  3. namespace LotteryWebApp.Models
  4. {
  5. public class BuyTicket_ViewModel
  6. {
  7. public string termType { get; set; }
  8. }
  9. public class BuyTicketChoose_ViewModel
  10. {
  11. public string ticketType { get; set;}
  12. }
  13. public class BuyTicketPayment_ViewModel
  14. {
  15. public string code { get; set; }
  16. public string step { get; set; }
  17. public string tickets { get; set; }
  18. public string ticketType { get; set; }
  19. public ConfirmTicketDataResponse confirmTicketDataResponse { get; set; }
  20. public ConfirmBuyingTicketResponse confirmBuyingTicketResponse { get; set; }
  21. public Profile profile { get; set; }
  22. public string termType { get; set;}
  23. }
  24. public class LastTermResult_ViewModel
  25. {
  26. public List<Term> listTermNotDrawn { get; set; }
  27. public List<Term> listTerm { get; set; }
  28. public string termType { get; set; }
  29. }
  30. }