| 1234567891011121314151617181920212223242526272829303132333435 |
- using LotteryWebApp.Service;
- using System.Collections.Generic;
- namespace LotteryWebApp.Models
- {
- public class BuyTicket_ViewModel
- {
- public string termType { get; set; }
- }
- public class BuyTicketChoose_ViewModel
- {
- public string ticketType { get; set;}
- }
- public class BuyTicketPayment_ViewModel
- {
- public string code { get; set; }
- public string step { get; set; }
- public string tickets { get; set; }
- public string ticketType { get; set; }
- public ConfirmTicketDataResponse confirmTicketDataResponse { get; set; }
- public ConfirmBuyingTicketResponse confirmBuyingTicketResponse { get; set; }
- public Profile profile { get; set; }
- public string termType { get; set;}
- }
- public class LastTermResult_ViewModel
- {
- public List<Term> listTermNotDrawn { get; set; }
- public List<Term> listTerm { get; set; }
- public string termType { get; set; }
- }
- }
|