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 listTermNotDrawn { get; set; } public List listTerm { get; set; } public string termType { get; set; } } }